Help for this page

Select Code to Download


  1. or download this
    if (@groups = /$test_regexp/g) {
        while (@groups) {
    ...
            # ...
        }
    }
    
  2. or download this
    while (/$test_regexp/g) {
        ($url, $file) = ($1, $2);
        # ...
    }