Defining Regular Expressions

上一篇 / 下一篇  2009-05-28 15:49:50

➤ Using the Backslash Character ( \ )
➤ Matching Any Single Character ( . )
➤ Matching Any Single Character in a List ( [xy] )
➤ Matching Any Single Character Not in a List ( [^xy] )
➤ Matching Any Single Character within a Range ( [x-y] )
➤ Matching Zero or More Specific Characters ( * )
➤ Matching One or More Specific Characters ( + )
➤ Matching Zero or One Specific Character ( ? )
➤ Grouping Regular Expressions ( ( ) )
➤ Matching One of Several Regular Expressions ( | )
➤ Matching the Beginning of a Line ( ^ )
➤ Matching the End of a Line ( $ )
➤ Matching Any AlphaNumeric Character Including the Underscore ( \w )
➤ Matching Any Non-AlphaNumeric Character ( \W )
➤ Combining Regular Expression Operators

 

 


TAG:

 

评分:0

我来说两句

Open Toolbar