Help for this page
/<regex>/; $amourss.=$1;
/^ # 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
/^a(.+)[fg]$/ $amourss.=$1;