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

poj, why do we need the sign > between the div ? I know it works now but i have not seen this syntax any where. And I also like to point out why my script does not load the css file in the server because I did not use the full link to my web site portal. It should be href = "https://www.google.com.au/Perl-Script/Extra/w3.css" I write here so any one has same issue can check. <code> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type='text/css' media='screen' href="https://www.google.com.au/Perl-Script/Extra/w3.css">

Nirvana is Now or Never
  • Comment on Re^10: split the text file to multiple arrays

Replies are listed 'Best First'.
Re^11: split the text file to multiple arrays
by AnomalousMonk (Archbishop) on Jul 18, 2017 at 01:57 UTC
    ... 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:  <%-{-{-{-<

      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;