in reply to Re^10: split the text file to multiple arrays
in thread split the text file to multiple arrays

... why do we need the sign > between the div ?

It's not between the div, it's the closing delimiter of an XML (or maybe it's an HTML) div tag.

... i have not seen this syntax any where.

You see the syntax every time you write  <head> or  <title> or  </title> etc., etc. :)


Give a man a fish:  <%-{-{-{-<

Replies are listed 'Best First'.
Re^12: split the text file to multiple arrays
by huck (Prior) on Jul 18, 2017 at 02:36 UTC

    https://www.w3schools.com/tags/tag_div.asp HTML <div> Tag.

    defines a division or a section in an HTML document ... used to group block-elements to format them with CSS.

    Besides its uses as a CSS grouper you may also see it used in a named fashon in javascript as a lvalue or rvalue

    a = document.getElementById("tableId").innerHTML; ... parent.document.getElementById("tableId").innerHTML = a;