regexp cheatsheet - Devhints
文章推薦指數: 80 %
Basic cheatsheets for regular expression · One-page guide to regexp. Devhints.io Edit RegExp Characterclasses Pattern Description . Anycharacter,exceptnewline \w Word \d Digit \s Whitespace \W Notword \D Notdigit \S Notwhitespace [abc] Anyofa,b,orc [a-e] Charactersbetweenaande [1-9] Digitbetween1and9 [[:print:]] Anyprintablecharacterincludingspaces [^abc] Anycharacterexcepta,borc Anchors Pattern Description \G Startofmatch ^ Startofstring $ Endofstring \A Startofstring \Z Endofstring \z Absoluteendofstring \b Awordboundry \B Non-wordboundry ^abc Startwithabc abc$ Endwithabc Escapedcharacters Pattern Description \.\*\\ Escapespecialcharacterusedbyregex \t Tab \n Newline \r Carriagereturn Groups Pattern Description (abc) Capturegroup (a|b) Matchaorb (?:abc) Matchabc,butdon’tcapture Quantifiers Pattern Description a* Match0ormore a+ Match1ormore a? Match0or1 a{5} Matchexactly5 a{,3} Matchupto3 a{3,} Match3ormore a{1,3} Matchbetween1and3 Lookahead&Lookbehind Pattern Description a(?=b) Matchainbabybutnotinbay a(?!b) MatchainStanbutnotinStab (?<=a)b Matchbincrabsbutnotincribs (?
延伸文章資訊
- 1Regular Expressions Cheat Sheet by DaveChild
A quick reference guide for regular expressions (regex), including symbols, ranges, grouping, ass...
- 2Regular Expressions cheat sheet
Regular Expressions cheat sheet. Basic matching. Each symbol matches a single character: anything...
- 3Regular expression syntax cheatsheet - JavaScript | MDN
This page provides an overall cheat sheet of all the capabilities of RegExp syntax by aggregating...
- 4RegEX Cheat Sheet & Quick Reference
This is a quick cheat sheet to getting started with regular expressions. ... re.compile, Compile ...
- 5RegExLib.com Regular Expression Cheat Sheet (.NET)
RegExLib.com Regular Expression Cheat Sheet (.NET). Metacharacters Defined. MChar, Definition. ^,...