Help for this page

Select Code to Download


  1. or download this
      <person>
        <firstname>Bob</firstname>
    ...
        <dob>18-Aug-1972</dob>
        <hobby>Fishing</hobby>
      </person>
    
  2. or download this
      <person firstname="Bob" surname="Smith" dob="18-Aug-1972" hobby="Fis
    +hing" />
    
  3. or download this
      <person firstname="Bob" surname="Smith" dob="18-Aug-1972">
        <hobby>Fishing</hobby>
        <hobby>Trainspotting</hobby>
      </person>
    
  4. or download this
      my $person = XMLin($filename)
    
  5. or download this
      {
        firstname => "Bob" ,
    ...
        dob       => "18-Aug-1972", 
        hobby     => "Fishing",
      }
    
  6. or download this
      {
        firstname => "Bob" ,
    ...
        dob       => "18-Aug-1972", 
        hobby     => [ "Fishing", "Trainspotting" ]
      }
    
  7. or download this
      my $person = XMLin($filename, forcearray => 1)
    
  8. or download this
      {
        firstname => [ "Bob" ],
    ...
        dob       => [ "18-Aug-1972" ], 
        hobby     => [ "Fishing" ],
      }
    
  9. or download this
      {
        firstname => "Bob",
    ...
        dob       => "18-Aug-1972", 
        hobby     => [ "Fishing", "Trainspotting" ],
      }
    
  10. or download this
      my $person = XMLin($filename, forcearray => [ 'hobby' ])
    
  11. or download this
      {
        firstname => "Bob",
    ...
        dob       => "18-Aug-1972", 
        hobby     => [ "Fishing", "Trainspotting ],
      }