SlideShare a Scribd company logo
1 of 52
Introduction toRegular Expressions Matt Casto http://google.com/profiles/mattcasto
Introduction toRegular Expressions Matt Casto Quick Solutions http://google.com/profiles/mattcasto
“Some people, when confronted with a problem, think “I know, I'll use regular expressions.      Now they have two problems.” - Jamie Zawinski, August 12, 1997
What are Regular Expressions? ^+@[a-zA-Z_]+?[a-zA-Z]{2,3}$ [-]+@([-]+)+[-]+ ^.+@[^].*[a-z]{2,}$ ^([a-zA-Z0-9_]+)@(([0-9]{1,3}[0-9]{1,3}[0-9]{1,3})|(([a-zA-Z0-9]+)+))([a-zA-Z]{2,4}|[0-9]{1,3})(?)$
History Stephen Cole Kleene American mathematician credited for inventing Regular Expressions in the 1950’s using a mathematic notation called regular sets.
History Ken Thompson American pioneer of computer science who, among many other things, used Kleene’s regular sets for searching in his QED and ed text editors.
History grep Global Regular Expression Print
History Henry Spencer Wrote the regex library which is what Perl and Tcl languages used for regular expressions.
Why Should You Care? Example:  finding duplicate words in a file. Requirements: ,[object Object]
 Find doubled words that expand lines
 Ignore capitalization differences
 Ignore HTML tags,[object Object]
Why Should You Care? Example:  finding duplicate words in a file. Solution: $/ = “.”; while (<>) {   next if !s/([a-z]+)((?:<[^>]+>)+)()/[7m$1[m$2[7m$3[m/ig;   s/^(?:[^]*)+//mg;   s/^/$ARGV: /mg;   print; }
Literal Characters Any character except a small list of reserved characters. regex is Jack is a boy match in target string
Literal Characters Literals will match characters in the middle of words. regex a Jack is a boy matches in target string
Literal Characters Literals are case sensitive – capitalization matters! regex j Jack is a boy NOT a match
Special Characters [ ^ $ . | ? * + ( )
Special Characters You can match special characters by escaping them with a backslash. 11=2 I wrote 1+1=2 on the chalkboard.
Special Characters Some characters, such as { and } are only reserved depending on context. if (true)  else if (true) { beep; }
Non-Printable Characters Some literal characters can be escaped to represent non-printable characters.  – tab  – carriage return  – line feed  – bell  – escape  – form feed  – vertical tab
Period The period character matches any single character. a.boy Jack is a boy
Character Classes Used to match only one of the characters inside square braces. [Gg]r[ae]y Grayson drives a grey sedan.
Character Classes Hyphen is a reserved character inside a character class and indicates a range. [0-9a-fA-F] The HTML codefor White is #FFFFFF
Character Classes Caret inside a character class negates the match. q[^u] Qatar is home to quite a lot of Iraqi citizens, but is not a city in Iraq
Character Classes Normal special characters are valid inside of character classes. Only ] ^ and – are reserved. [+*] 6 * 7 and 18 + 24 both equal 42
Shorthand Character Classes  – digit or [0-9]  – word or [A-Za-z0-9_]  – whitespace or [ ] (space, tab, CR, LF) [] 1 + 2 = 3
Shorthand Character Classes  – non-digit or [^]  – non-word or [^]  – non-whitespace or [^] [] 1 + 2 = 3
Repetition The asterisk repeats the preceding character class 0 or more times. <[A-Za-z][A-Za-z0-9]*> <HTML>Regex is <b>Awesome</b></HTML>
Repetition The plus repeats the preceding character class 1 or more times. <[A-Za-z0-9]+> Watch out for invalid <HTML> tags like <1> and <>!
Repetition The question mark repeats the preceding character class 0 or 1 times, in effect making it optional. </?[A-Za-z][A-Za-z0-9]*> <HTML>Regex is <b>Awesome</b></HTML>
Anchors The caret anchor matches the position before the first character in a string. ^vac vacation evacuation
Anchors The dollar sign anchor matches the position after the last character in a string. tion$ vacation evacuation
Anchors The caret and dollar sign anchors match the start and end of the line if the engine has multi-line turned on. tion$ vacation evacuation has ruined my evaluation
Anchors The  and  shorthand character classes are like ^ and $ but only match the start and end of the string. tion vacation evacuation has ruined my evaluation
Word Boundaries The  shorthand character class matches… ,[object Object]
 position after the last character in a string (like $)
 between two characters where one is a word character and the other is not4 We’ve got 4 orders for 44 lbs of C4
Word Boundaries The  shorthand character class is the negated word boundary – any position between to word characters or two non-word characters. at vacation evacuation at that time ate my evaluation
Alternation The pipe symbol delimits two or more character classes that can both match. cat|dog A cat and dog are expected to follow the dogma that their presence with one another leads to catastrophe.
Alternation Alternations include any character classes. cat|dog A cat and dog are expected to follow the dogma that their presence with one another leads to catastrophe.
Alternation Use parenthesis to group alternating matches when you want to limit the reach of alternation. (cat|dog) A cat and dog are expected to follow the dogma that their presence with one another leads to catastrophe.
Eagerness Eagerness causes the order of alternations to matter. and|android A robot and an android fight. The ninja wins.
Greediness Greediness means that the engine will always try to match as much as possible. an+ A robot and an android fight. The ninja wins.
Laziness Laziness, or reluctant, modifies a repetition operator to only match as much as it needs to. an+? A robot and an android fight. The ninja wins.
Limiting Repetition You can limit repetition with curly braces. {2,4} 1 111111111 11111
Limiting Repetition The second number can be omitted to mean infinite. Essentially {0,} is the same as * and {1,} same as +. {2,} 1 11111111111111
Limiting Repetition The a single number can be used to match an exact number of times. {4} 1 11 111 1111 11111
Back References Parenthesis around a character set groups those characters and creates a back reference. ([ai]).. The magician said abracadabra!
Named Groups Named groups let you reference matched groups by their name rather than just index. (?<vowel>[ai]).<vowel>. The magician said abracadabra!

More Related Content

What's hot

Regular expression
Regular expressionRegular expression
Regular expressionLarry Nung
 
Regular expressions
Regular expressionsRegular expressions
Regular expressionsEran Zimbler
 
Introducing Regular Expressions
Introducing Regular ExpressionsIntroducing Regular Expressions
Introducing Regular ExpressionsNeha Jain
 
Regular Expression
Regular ExpressionRegular Expression
Regular Expressionvaluebound
 
Compiler design syntax analysis
Compiler design syntax analysisCompiler design syntax analysis
Compiler design syntax analysisRicha Sharma
 
sparse matrix in data structure
sparse matrix in data structuresparse matrix in data structure
sparse matrix in data structureMAHALAKSHMI P
 
Stack application
Stack applicationStack application
Stack applicationStudent
 
non-strict functions, bottom and scala by-name parameters
non-strict functions, bottom and scala by-name parametersnon-strict functions, bottom and scala by-name parameters
non-strict functions, bottom and scala by-name parametersPhilip Schwarz
 
RABIN KARP ALGORITHM STRING MATCHING
RABIN KARP ALGORITHM STRING MATCHINGRABIN KARP ALGORITHM STRING MATCHING
RABIN KARP ALGORITHM STRING MATCHINGAbhishek Singh
 
Java database connectivity with MySql
Java database connectivity with MySqlJava database connectivity with MySql
Java database connectivity with MySqlDhyey Dattani
 

What's hot (20)

Regular expression
Regular expressionRegular expression
Regular expression
 
Regular expressions
Regular expressionsRegular expressions
Regular expressions
 
Introducing Regular Expressions
Introducing Regular ExpressionsIntroducing Regular Expressions
Introducing Regular Expressions
 
sets and maps
 sets and maps sets and maps
sets and maps
 
Regular Expression
Regular ExpressionRegular Expression
Regular Expression
 
Compiler design syntax analysis
Compiler design syntax analysisCompiler design syntax analysis
Compiler design syntax analysis
 
Passing Arguments
Passing ArgumentsPassing Arguments
Passing Arguments
 
sparse matrix in data structure
sparse matrix in data structuresparse matrix in data structure
sparse matrix in data structure
 
Stack application
Stack applicationStack application
Stack application
 
Data Structure (Queue)
Data Structure (Queue)Data Structure (Queue)
Data Structure (Queue)
 
Rabin karp string matcher
Rabin karp string matcherRabin karp string matcher
Rabin karp string matcher
 
Method overloading
Method overloadingMethod overloading
Method overloading
 
Regular expressions
Regular expressionsRegular expressions
Regular expressions
 
Javascript validating form
Javascript validating formJavascript validating form
Javascript validating form
 
non-strict functions, bottom and scala by-name parameters
non-strict functions, bottom and scala by-name parametersnon-strict functions, bottom and scala by-name parameters
non-strict functions, bottom and scala by-name parameters
 
skip list
skip listskip list
skip list
 
RABIN KARP ALGORITHM STRING MATCHING
RABIN KARP ALGORITHM STRING MATCHINGRABIN KARP ALGORITHM STRING MATCHING
RABIN KARP ALGORITHM STRING MATCHING
 
Parse Tree
Parse TreeParse Tree
Parse Tree
 
LL(1) parsing
LL(1) parsingLL(1) parsing
LL(1) parsing
 
Java database connectivity with MySql
Java database connectivity with MySqlJava database connectivity with MySql
Java database connectivity with MySql
 

Similar to Introduction to Regular Expressions

An Introduction to Regular expressions
An Introduction to Regular expressionsAn Introduction to Regular expressions
An Introduction to Regular expressionsYamagata Europe
 
Regular expressions
Regular expressionsRegular expressions
Regular expressionsJames Gray
 
Introduction to regular expressions
Introduction to regular expressionsIntroduction to regular expressions
Introduction to regular expressionsBen Brumfield
 
Eloquent Ruby chapter 4 - Find The Right String with Regular Expression
Eloquent Ruby chapter 4 - Find The Right String with Regular ExpressionEloquent Ruby chapter 4 - Find The Right String with Regular Expression
Eloquent Ruby chapter 4 - Find The Right String with Regular ExpressionKuyseng Chhoeun
 
Perl Intro 5 Regex Matches And Substitutions
Perl Intro 5 Regex Matches And SubstitutionsPerl Intro 5 Regex Matches And Substitutions
Perl Intro 5 Regex Matches And SubstitutionsShaun Griffith
 
Regexp secrets
Regexp secretsRegexp secrets
Regexp secretsHiro Asari
 
Introduction to Regular Expressions RootsTech 2013
Introduction to Regular Expressions RootsTech 2013Introduction to Regular Expressions RootsTech 2013
Introduction to Regular Expressions RootsTech 2013Ben Brumfield
 
Advanced Regular Expressions Redux
Advanced Regular Expressions ReduxAdvanced Regular Expressions Redux
Advanced Regular Expressions ReduxJakub Nesetril
 
Regular expressions-ada-2018
Regular expressions-ada-2018Regular expressions-ada-2018
Regular expressions-ada-2018Emma Burrows
 
And now you have two problems. Ruby regular expressions for fun and profit by...
And now you have two problems. Ruby regular expressions for fun and profit by...And now you have two problems. Ruby regular expressions for fun and profit by...
And now you have two problems. Ruby regular expressions for fun and profit by...Codemotion
 
Regular expressions
Regular expressionsRegular expressions
Regular expressionsRaj Gupta
 
Regular Expression in Action
Regular Expression in ActionRegular Expression in Action
Regular Expression in ActionFolio3 Software
 
PERL Regular Expression
PERL Regular ExpressionPERL Regular Expression
PERL Regular ExpressionBinsent Ribera
 
Php Chapter 4 Training
Php Chapter 4 TrainingPhp Chapter 4 Training
Php Chapter 4 TrainingChris Chubb
 
Regular Expressions and You
Regular Expressions and YouRegular Expressions and You
Regular Expressions and YouJames Armes
 

Similar to Introduction to Regular Expressions (20)

An Introduction to Regular expressions
An Introduction to Regular expressionsAn Introduction to Regular expressions
An Introduction to Regular expressions
 
Regular expressions
Regular expressionsRegular expressions
Regular expressions
 
Introduction to regular expressions
Introduction to regular expressionsIntroduction to regular expressions
Introduction to regular expressions
 
Eloquent Ruby chapter 4 - Find The Right String with Regular Expression
Eloquent Ruby chapter 4 - Find The Right String with Regular ExpressionEloquent Ruby chapter 4 - Find The Right String with Regular Expression
Eloquent Ruby chapter 4 - Find The Right String with Regular Expression
 
Perl Intro 5 Regex Matches And Substitutions
Perl Intro 5 Regex Matches And SubstitutionsPerl Intro 5 Regex Matches And Substitutions
Perl Intro 5 Regex Matches And Substitutions
 
Regexp secrets
Regexp secretsRegexp secrets
Regexp secrets
 
Andrei's Regex Clinic
Andrei's Regex ClinicAndrei's Regex Clinic
Andrei's Regex Clinic
 
Ruby RegEx
Ruby RegExRuby RegEx
Ruby RegEx
 
Introduction to Regular Expressions RootsTech 2013
Introduction to Regular Expressions RootsTech 2013Introduction to Regular Expressions RootsTech 2013
Introduction to Regular Expressions RootsTech 2013
 
Advanced Regular Expressions Redux
Advanced Regular Expressions ReduxAdvanced Regular Expressions Redux
Advanced Regular Expressions Redux
 
Regular expressions-ada-2018
Regular expressions-ada-2018Regular expressions-ada-2018
Regular expressions-ada-2018
 
And now you have two problems. Ruby regular expressions for fun and profit by...
And now you have two problems. Ruby regular expressions for fun and profit by...And now you have two problems. Ruby regular expressions for fun and profit by...
And now you have two problems. Ruby regular expressions for fun and profit by...
 
Regular expressions
Regular expressionsRegular expressions
Regular expressions
 
Regular Expression in Action
Regular Expression in ActionRegular Expression in Action
Regular Expression in Action
 
Expresiones Regulares
Expresiones RegularesExpresiones Regulares
Expresiones Regulares
 
PERL Regular Expression
PERL Regular ExpressionPERL Regular Expression
PERL Regular Expression
 
Php Chapter 4 Training
Php Chapter 4 TrainingPhp Chapter 4 Training
Php Chapter 4 Training
 
Regular Expression
Regular ExpressionRegular Expression
Regular Expression
 
Regular Expressions and You
Regular Expressions and YouRegular Expressions and You
Regular Expressions and You
 
Working with text, Regular expressions
Working with text, Regular expressionsWorking with text, Regular expressions
Working with text, Regular expressions
 

Recently uploaded

Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 

Recently uploaded (20)

Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 

Introduction to Regular Expressions

  • 1. Introduction toRegular Expressions Matt Casto http://google.com/profiles/mattcasto
  • 2. Introduction toRegular Expressions Matt Casto Quick Solutions http://google.com/profiles/mattcasto
  • 3. “Some people, when confronted with a problem, think “I know, I'll use regular expressions. Now they have two problems.” - Jamie Zawinski, August 12, 1997
  • 4.
  • 5. What are Regular Expressions? ^+@[a-zA-Z_]+?[a-zA-Z]{2,3}$ [-]+@([-]+)+[-]+ ^.+@[^].*[a-z]{2,}$ ^([a-zA-Z0-9_]+)@(([0-9]{1,3}[0-9]{1,3}[0-9]{1,3})|(([a-zA-Z0-9]+)+))([a-zA-Z]{2,4}|[0-9]{1,3})(?)$
  • 6.
  • 7. History Stephen Cole Kleene American mathematician credited for inventing Regular Expressions in the 1950’s using a mathematic notation called regular sets.
  • 8. History Ken Thompson American pioneer of computer science who, among many other things, used Kleene’s regular sets for searching in his QED and ed text editors.
  • 9. History grep Global Regular Expression Print
  • 10. History Henry Spencer Wrote the regex library which is what Perl and Tcl languages used for regular expressions.
  • 11.
  • 12. Find doubled words that expand lines
  • 14.
  • 15. Why Should You Care? Example: finding duplicate words in a file. Solution: $/ = “.”; while (<>) { next if !s/([a-z]+)((?:<[^>]+>)+)()/[7m$1[m$2[7m$3[m/ig; s/^(?:[^]*)+//mg; s/^/$ARGV: /mg; print; }
  • 16.
  • 17. Literal Characters Any character except a small list of reserved characters. regex is Jack is a boy match in target string
  • 18. Literal Characters Literals will match characters in the middle of words. regex a Jack is a boy matches in target string
  • 19. Literal Characters Literals are case sensitive – capitalization matters! regex j Jack is a boy NOT a match
  • 20. Special Characters [ ^ $ . | ? * + ( )
  • 21. Special Characters You can match special characters by escaping them with a backslash. 11=2 I wrote 1+1=2 on the chalkboard.
  • 22. Special Characters Some characters, such as { and } are only reserved depending on context. if (true) else if (true) { beep; }
  • 23. Non-Printable Characters Some literal characters can be escaped to represent non-printable characters. – tab – carriage return – line feed – bell – escape – form feed – vertical tab
  • 24. Period The period character matches any single character. a.boy Jack is a boy
  • 25. Character Classes Used to match only one of the characters inside square braces. [Gg]r[ae]y Grayson drives a grey sedan.
  • 26. Character Classes Hyphen is a reserved character inside a character class and indicates a range. [0-9a-fA-F] The HTML codefor White is #FFFFFF
  • 27. Character Classes Caret inside a character class negates the match. q[^u] Qatar is home to quite a lot of Iraqi citizens, but is not a city in Iraq
  • 28. Character Classes Normal special characters are valid inside of character classes. Only ] ^ and – are reserved. [+*] 6 * 7 and 18 + 24 both equal 42
  • 29. Shorthand Character Classes – digit or [0-9] – word or [A-Za-z0-9_] – whitespace or [ ] (space, tab, CR, LF) [] 1 + 2 = 3
  • 30. Shorthand Character Classes – non-digit or [^] – non-word or [^] – non-whitespace or [^] [] 1 + 2 = 3
  • 31. Repetition The asterisk repeats the preceding character class 0 or more times. <[A-Za-z][A-Za-z0-9]*> <HTML>Regex is <b>Awesome</b></HTML>
  • 32. Repetition The plus repeats the preceding character class 1 or more times. <[A-Za-z0-9]+> Watch out for invalid <HTML> tags like <1> and <>!
  • 33. Repetition The question mark repeats the preceding character class 0 or 1 times, in effect making it optional. </?[A-Za-z][A-Za-z0-9]*> <HTML>Regex is <b>Awesome</b></HTML>
  • 34. Anchors The caret anchor matches the position before the first character in a string. ^vac vacation evacuation
  • 35. Anchors The dollar sign anchor matches the position after the last character in a string. tion$ vacation evacuation
  • 36. Anchors The caret and dollar sign anchors match the start and end of the line if the engine has multi-line turned on. tion$ vacation evacuation has ruined my evaluation
  • 37. Anchors The and shorthand character classes are like ^ and $ but only match the start and end of the string. tion vacation evacuation has ruined my evaluation
  • 38.
  • 39. position after the last character in a string (like $)
  • 40. between two characters where one is a word character and the other is not4 We’ve got 4 orders for 44 lbs of C4
  • 41. Word Boundaries The shorthand character class is the negated word boundary – any position between to word characters or two non-word characters. at vacation evacuation at that time ate my evaluation
  • 42. Alternation The pipe symbol delimits two or more character classes that can both match. cat|dog A cat and dog are expected to follow the dogma that their presence with one another leads to catastrophe.
  • 43. Alternation Alternations include any character classes. cat|dog A cat and dog are expected to follow the dogma that their presence with one another leads to catastrophe.
  • 44. Alternation Use parenthesis to group alternating matches when you want to limit the reach of alternation. (cat|dog) A cat and dog are expected to follow the dogma that their presence with one another leads to catastrophe.
  • 45. Eagerness Eagerness causes the order of alternations to matter. and|android A robot and an android fight. The ninja wins.
  • 46. Greediness Greediness means that the engine will always try to match as much as possible. an+ A robot and an android fight. The ninja wins.
  • 47. Laziness Laziness, or reluctant, modifies a repetition operator to only match as much as it needs to. an+? A robot and an android fight. The ninja wins.
  • 48. Limiting Repetition You can limit repetition with curly braces. {2,4} 1 111111111 11111
  • 49. Limiting Repetition The second number can be omitted to mean infinite. Essentially {0,} is the same as * and {1,} same as +. {2,} 1 11111111111111
  • 50. Limiting Repetition The a single number can be used to match an exact number of times. {4} 1 11 111 1111 11111
  • 51. Back References Parenthesis around a character set groups those characters and creates a back reference. ([ai]).. The magician said abracadabra!
  • 52. Named Groups Named groups let you reference matched groups by their name rather than just index. (?<vowel>[ai]).<vowel>. The magician said abracadabra!
  • 53. Negative Lookahead Negative lookaheads match something that is not there. q(?!u) Qatar is home to quite a lot of Iraqi citizens, but is not a city in Iraq
  • 54. Positive Lookahead Positive lookaheads match something that is there without having that group included in the match. q(?=u) Qatar is home to quite a lot of Iraqi citizens, but is not a city in Iraq
  • 55. Positive & Negative Lookbehind Lookbehinds are just like lookaheads, but working backwards. (?<=a)q Qatar is home to quite a lot of Iraqi citizens, but is not a city in Iraq
  • 56. Resources Lots of web pages http://del.icio.us/mattcasto/regex “Mastering Regular Expressions” by Jeffrey Friedl http://oreilly.com/catalog/9780596528126/

Editor's Notes

  1. I just wanted to get this famous quote out of the way from the beginning. Like all great quotes, it has been falsely attributed all over the place. See http://regex.info/blog/2006-09-15/247 for a comprehensive investigation on where the quote originates.
  2. If you’re never seen a regular expression before, it might look like Q*bert’s language to you.
  3. These are all examples of regular expressions. They were all created with the intent of matching email addresses. As you can see, they’re very different from one another.
  4. Regular expressions are often called a “write only language” and aren’t easily understood. To a novice they don’t even look like they have any meaning.
  5. Kleene is pronounced “clay-knee”
  6. Kenneth Lane Thompson, or just ‘ken’ in hacker circles, is often credited for creating the Unix operating system along with Dennis Ritchie
  7. Unix command line tool which borrowed Regular Expression pattern matching from the “ed” editor.
  8. Theregex library was eventually used to develop the PCRE library – Perl Compatible Reguarl Expressions. Most major programming languages these days use regular expressions based on the PCRE, including Java, .NET and Ruby.
  9. Without knowing regular expressions you could certainly accomplish this task, but it would take much longer, be more complex, and much more likely to contain bugs.
  10. Here’s some c# code that I threw together in a few minutes to parse a text file. There are bugs in the code and requirements that it doesn’t meet. Also, if requirements were to be added, this code would be more difficult to refactor than a regex.
  11. This solution is in Perl. I could have re-written it in c# for good comparison with my previous slide, but I decided that the original example solution looks much nicer. By the way, this example is taken from Mastering Regular Expressions by Jeffrey Friedl
  12. Knowing regular expressions won’t make you a hero, but you may feel like one when you’ve saved lots of time.
  13. The basics of regular expressions start with literal characters. Any character, except for a small list of reserved characters which will be covered next, is considered a literal character. This example has a regex “is” which is two literal characters.
  14. The regex “a” matches any letter “a” in the target string, even if its inside a word.
  15. Some regex engines have the option to turn off case sensitivity. Some engines may have this option on by default.
  16. These are all reserved characters, also known as meta-characters.
  17. Special characters can be escaped with a backslash, as demonstrated in the example.
  18. The curly brace characters are reserved, but only when in the context of a repetition modifier, and don’t need to be escaped otherwise. You can escape them without any side effects.
  19. There are other non-printable characters too, especially when you use unicode. You can also reference ASCII character codes, but I don’t see the need to show an example of this.
  20. The period, or dot, character matches any single character. There is an exception to this – if the engine is in single line mode (which used to be the only mode, but now is usually off by default) then the period will not match a new line. Javascript and VBScript don’t have a multi-line option, but [sS] works.The period is the most common meta-character, but that is because it is often mis-used.
  21. Also known as Character Sets match only one of the characters inside the square brackets.
  22. The hyphen, or dash, character inside a character class indicates a range of characters. The example would match any hexadecimal value. Note that the hyphen can be escaped inside a character class, but doesn’t need to be escaped if its at the beginning or end because its not a range in that context.
  23. A caret just inside a character negates the match. Note that the example won’t match the string “Iraq” because there is no character following the q. Also, “Qatar” isn’t matched because the Q is capitalized.
  24. The caret and hyphen characters are only reserved when they’re used in a context that could suggest a negation (for carets) or a range (for hyphens).
  25. These can be used inside and outside of character classes. All of these aren’t necessary, but are shortcuts that make it easier to write readable regular expressions – HA!Note that in the example the match includes the space before the numbers, but I couldn’t easily represent that with coloring.
  26. These are the negated versions of the shorthand character classes from the previous slide.
  27. Like the period, the asterisk is overused and dangerous.
  28. Like the period, the asterisk is overused and dangerous.
  29. The question mark can also modify a repetition symbol to make it non-greedy or lazy, but that’s a more advanced subject. Its all about context.
  30. Anchors don’t match a character, they match a position which could be before, after or between characters. In this example, the string only matches because there is no whitespace before the word “vacation”
  31. Note that anchors can result in a zero length match. For example, a regex of just “$” matches the position at the end of a line, but the match has no characters. This can be useful or cause issues in your code!
  32. Note that another exception is a new line at the end of a file will not be matched by $ or . The z shorthand character class will handle this circumstance.
  33. Note that the words “at”, “that” and “ate” don’t contain a match in the example.
  34. Regular expressions are eager, which means they match as soon as they can. This means that the order of similar character classes in an alternation can affect the result. In the example, the “and” match is found first, even though the full word “android” exists. If the character classes were switched, the whole “and” word would still match, but the whole “android” word would match instead of just the beginning of the word.
  35. Greediness causes the example to always match the full “android” instead of just “and” which is also a valid match.
  36. The ? mark after a repetition operator (*+?) makes it lazy.
  37. Using parenthesis, or round braces, to group a character set not only groups those characters together to apply repetition to them, but it also creates a back reference. A back reference stores the grouped part of the match for use later in the regex. Back references can also be used for replaces.In the example, “agici” doesn’t match because the group is “a” not “i”.
  38. The groups can be named with single parenthesis instead of greater/less than characters.
  39. This example matches a “q” not followed by a “u”. Unlike the example earlier in the presentation, this regex won’t match the character following the “q”.
  40. This example matches a “q” followed by a “u”, but notice that the “u” is not included with that match.
  41. This example matches a “q” followed by a “u”, but notice that the “u” is not included with that match.