Help for this page

Select Code to Download


  1. or download this
    /<regex>/;
    $amourss.=$1;
    
  2. or download this
    /^    # Match the start of the string
     a    # Single occurrence of the character a
    ...
     [fg] # a single character, either "f" or "g"
     $    # match the end of the string
    /x    # x modifier to allow comments in regex
    
  3. or download this
    /^a(.+)[fg]$/
    $amourss.=$1;