Help for this page

Select Code to Download


  1. or download this
    $_ = 'alpha="first" beta="second" gamma="third"';
    
    ...
    
        print("$id: $val\n");
    }
    
  2. or download this
    alpha: "first"
    beta: "second"
    gamma: "third"
    
  3. or download this
    $_ = 'alpha="first" beta="second" gamma="third"';
    
    while (/(\w+)=("[^"]*"|\w+)/g) {
        print("$1: $2\n");
    }
    
  4. or download this
    alpha: "first"
    beta: "second"
    gamma: "third"