Difference between revisions of "regex guide"

From thelinuxwiki
Jump to: navigation, search
(Created page with " == special chacters == \ ^ $ . | ? * + ( ) [ {")
 
(special chacters)
Line 3: Line 3:
  
 
  \ ^ $ . | ? * + ( ) [ {
 
  \ ^ $ . | ? * + ( ) [ {
 +
 +
Most regular expression flavors treat the brace { as a literal character, unless it is part of a repetition operator like a{1,3}

Revision as of 23:03, 13 May 2017

special chacters

\ ^ $ . | ? * + ( ) [ {

Most regular expression flavors treat the brace { as a literal character, unless it is part of a repetition operator like a{1,3}