Regular Expression - 正则表达式

前端之家收集整理的这篇文章主要介绍了Regular Expression - 正则表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Regular Expression: (regex or regexp) is a sequence of characters that forms a search pattern,mainly for use in pattern matching with strings,or string matching. (From wiki)

Lists of a particular category of characters,operators and constructs that can be used to define regular expressions:

Character Escapes:




Character Classes: matches any one of a set of characters.



Anchors: cause a match to succeed or fail depending on the current position in the string.


Grouping Constructs



Quantifiers:


Backreference Constructs: allows a prevIoUsly matched subexperession to be identified subsequently in the same regular expression.


Alternation Constructs: Modify a regular expression to enable either/or matching.


Substitutions: are regular expression language elements that are supported in replacement patterns.


Regular Expression Options:


Miscellaneous Constructs:



References:http://msdn.microsoft.com/en-us/library/az24scfc(v=vs.110).aspx

原文链接:https://www.f2er.com/regex/361740.html

猜你在找的正则表达式相关文章