Help for this page

Select Code to Download


  1. or download this
    # strxmltext is a string variable sent by the webserver and will conta
    +in a semicolon
    my $stringvariabe = $args{strxmltext};
    
  2. or download this
    my ( $name, $value ) = split /;/, $stringvariabe;
    
  3. or download this
    my @strings = split /;/, $stringvariabe;