Regular Expressions Reference Sheet Character Definition Example ^ The pattern has to appear at the beginning of a string. ^cat matches any string that begins with cat $ The pattern has to appear at the end of a string. cat$ matches any string that ends with cat . Matches any character. cat. matches catT and … Continue reading Regular Expressions
↧