Help for this page

Select Code to Download


  1. or download this
    while (/name:\s*(\w+)\s+age:\s*(\d+)/g) {
      my ($name, $age) = ($1,$2);
    ...
    while (my ($name, $age) = /name:\s*(\w+)\s+age:\s*(\d+)/G) {
      # ...
    }
    
  2. or download this
    while (my ($name, $age) = /name:\s*(\w+)\s+age:\s*(\d+)/g) {
      # ...
    }