Regular Expression (@regextip) 's Twitter Profile
Regular Expression

@regextip

Learn to use regular expressions by following RegexTip. From @JohnDCook.

ID: 93473293

linkhttp://JohnDCook.com calendar_today29-11-2009 20:30:36

4,4K Tweet

76,76K Takipçi

19 Takip Edilen

Regular Expression (@regextip) 's Twitter Profile Photo

The characters * and ? have different meanings in regular expressions than they do in shells. Confusingly similar, but different.

Regular Expression (@regextip) 's Twitter Profile Photo

Character classes are characters listed inside square brackets. For example, [aeiou] is a character class that matches any vowel.

Regular Expression (@regextip) 's Twitter Profile Photo

Inside a character class, dash means range. For example, [0-9] matches any digit. Outside a character class dash has no special meaning.

Regular Expression (@regextip) 's Twitter Profile Photo

(When a string contains newline characters, whether $ may match the end of the line or the end of the string depends on regex settings.)