introduction to regular expressions rootstech 2013

34
Introduction to Regular Expressions Ben Brumfield RootsTech 2013

Upload: benwbrum

Post on 02-Jun-2015

182 views

Category:

Investor Relations


2 download

TRANSCRIPT

Page 1: Introduction to Regular Expressions RootsTech 2013

Introduction to Regular Expressions

Ben Brumfield

RootsTech 2013

Page 2: Introduction to Regular Expressions RootsTech 2013

Our Texts

• My Texts– Manuscript Transcripts– OCR

• Our Texts– Name Variants– Abbreviations– Spelling Changes– “Mistakes”

Page 3: Introduction to Regular Expressions RootsTech 2013

What are Regular Expressions?

• Very small language for describing text.

• Not a programming language.

• Incredibly powerful tool for search/replace operations.

• Old (1950s-60s)

• Arcane art.

• Ubiquitous.

Page 4: Introduction to Regular Expressions RootsTech 2013

Why Use Regular Expressions?

• Finding every instance of a string in a file – i.e. every mention of “chickens” in a farm diary

• How many times does “sing” appear in a text in all tenses and conjugations?

• Reformatting dirty data• Validating input.• Command line work – listing files,

grepping log files

Page 5: Introduction to Regular Expressions RootsTech 2013

The Basics

• A regex is a pattern enclosed within delimiters.

• Most characters match themselves.

• /rootstech/ is a regular expression that matches “rootstech”.– Slash is the delimiter enclosing the

expression.– “rootstech” is the pattern.

Page 6: Introduction to Regular Expressions RootsTech 2013

/at/

• Matches strings with “a” followed by “t”.

at hat

that atlas

aft Athens

Page 7: Introduction to Regular Expressions RootsTech 2013

/at/

• Matches strings with “a” followed by “t”.

at hat

that atlas

aft Athens

Page 8: Introduction to Regular Expressions RootsTech 2013

Some Theory

• Finite State Machine for the regex /at/

Page 9: Introduction to Regular Expressions RootsTech 2013

Characters

• Matching is case sensitive.

• Special characters: ( ) ^ $ { } [ ] \ | . + ? *

• To match a special character in your text, precede it with \ in your pattern:– /snarky [sic]/ does not match “snarky [sic]”– /snarky \[sic\]/ matches “snarky [sic]”

• Regular expressions can support Unicode.

Page 10: Introduction to Regular Expressions RootsTech 2013

Character Classes

• Characters within [ ] are choices for a single-character match.

• Think of a set operation, or a type of or.

• Order within the set is unimportant.

• /x[01]/ matches “x0” and “x1”.

• /[10][23]/ matches “02”, “03”, “12” and “13”.

• Initial^ negates the class: – /[^45]/ matches all characters except 4 or 5.

Page 11: Introduction to Regular Expressions RootsTech 2013

/[ch]at/

• Matches strings with “c” or “h”, followed by “a”, followed by “t”.

that at

chat cat

fat phat

Page 12: Introduction to Regular Expressions RootsTech 2013

/[ch]at/

• Matches strings with “c” or “h”, followed by “a”, followed by “t”.

that at

chat cat

fat phat

Page 13: Introduction to Regular Expressions RootsTech 2013

Ranges

• Ranges define sets of characters within a class.– /[1-9]/ matches any non-zero digit.– /[a-zA-Z]/ matches any letter.– /[12][0-9]/ matches numbers between 10 and

29.

Page 14: Introduction to Regular Expressions RootsTech 2013

Shortcuts

Shortcut Name Equivalent Class

\d digit [0-9]

\D not digit [^0-9]

\w word [a-zA-Z0-9_]

\W not word [^a-zA-Z0-9_]

\s space [\t\n\r\f\v ]

\S not space [^\t\n\r\f\v ]

. everything [^\n] (depends on mode)

Page 15: Introduction to Regular Expressions RootsTech 2013

/\d\d\d[- ]\d\d\d\d/

• Matches strings with:– Three digits– Space or dash– Four digits

501-1234 234 1252

652.2648 713-342-7452

PE6-5000 653-6464x256

Page 16: Introduction to Regular Expressions RootsTech 2013

/\d\d\d[- ]\d\d\d\d/

• Matches strings with:– Three digits– Space or dash– Four digits

501-1234 234 1252

652.2648 713-342-7452

PE6-5000 653-6464x256

Page 17: Introduction to Regular Expressions RootsTech 2013

Repeaters

• Symbols indicating that the preceding element of the pattern can repeat.

• /runs?/ matches runs or run

• /1\d*/ matches any number beginning with “1”.

Repeater Count

? zero or one

+ one or more

* zero or more

{n} exactly n

{n,m} between n and m times

{,m} no more than m times

{n,} at least n times

Page 18: Introduction to Regular Expressions RootsTech 2013

Repeaters

Strings:

1: “at” 2: “art”

3: “arrrrt” 4: “aft”

Patterns:

A: /ar?t/B: /a[fr]?t/

C: /ar*t/ D: /ar+t/

E: /a.*t/ F: /a.+t/

Repeater Count

? zero or one

+ one or more

* zero or more

{n} exactly n

{n,m} between n and m times

{,m} no more than m times

{n,} at least n times

Page 19: Introduction to Regular Expressions RootsTech 2013

Repeaters

• /ar?t/ matches “at” and “art” but not “arrrt”.

• /a[fr]?t/ matches “at”, “art”, and “aft”.

• /ar*t/ matches “at”, “art”, and “arrrrt”

• /ar+t/ matches “art” and “arrrt” but not “at”.

• /a.*t/ matches anything with an ‘a’ eventually followed by a ‘t’.

Page 20: Introduction to Regular Expressions RootsTech 2013

Lab Session I

Try this URL:

tinyurl.com/rootstechlab

Page 21: Introduction to Regular Expressions RootsTech 2013

Lab Session I

Match “Brumfield” and “Bromfield” in

1702 John Bromfield's estate had been proved in Isle of Wight prior to 1702,

Anne Brumfield rec'd. more than her share from her father's estate.

Page 22: Introduction to Regular Expressions RootsTech 2013

Lab Reference

Repeater Count

? zero or one

+ one or more

* zero or more

{n} exactly n times

{n,m} between n and m times

{,m} no more than m times

{n,} at least n times

Shortcut Name

\d digit

\D not digit

\w word

\W not word

\s space

\S not space

. everything

Page 23: Introduction to Regular Expressions RootsTech 2013

Anchors

• Anchors match between characters.

• Used to assert that the characters you’re matching must appear in a certain place.

• /\bat\b/ matches “at work” but not “batch”.

Anchor Matches

^ start of line

$ end of line

\b word boundary

\B not boundary

\A start of string

\Z end of string

\z raw end of string (rare)

Page 24: Introduction to Regular Expressions RootsTech 2013

Alternation

• In Regex, | means “or”.

• You can put a full expression on the left and another full expression on the right.

• Either can match.

• /seeks?|sought/ matches “seek”, “seeks”, or “sought”.

Page 25: Introduction to Regular Expressions RootsTech 2013

Grouping

• Everything within ( … ) is grouped into a single element for the purposes of repetition and alternation.

• The expression /(la)+/ matches “la”, “lala”, “lalalala” but not “all”.

• /schema(ta)?/ matches “schema” and “schemata” but not “schematic”.

Page 26: Introduction to Regular Expressions RootsTech 2013

Grouping Example

• What regular expression matches “eat”, “eats”, “ate” and “eaten”?

Page 27: Introduction to Regular Expressions RootsTech 2013

Grouping Example

• What regular expression matches “eat”, “eats”, “ate” and “eaten”?

• /eat(s|en)?|ate/

• Add word boundary anchors to exclude “sate” and “eating”: /\b(eat(s|en)?|ate)\b/

Page 28: Introduction to Regular Expressions RootsTech 2013

Lab Session II

Match “William” and “Wm.” in

1736 Robert Mosby and John Brumfield processioned the lands of Wm. Brittain

1739 … Witnesses: Richard Echols, William Brumfield, John Hendrick

Page 29: Introduction to Regular Expressions RootsTech 2013

Replacement

• Regex most often used for search/replace

• Syntax varies; most scripting languages and CLI tools use s/pattern/replacement/ .

• s/dog/hound/ converts “slobbery dogs” to “slobbery hounds”.

• s/\bsheeps\b/sheep/ converts – “sheepskin is made from sheeps” to– “sheepskin is made from sheep”

Page 30: Introduction to Regular Expressions RootsTech 2013

Capture

• During searches, ( … ) groups capture patterns for use in replacement.

• Special variables $1, $2, $3 etc. contain the capture.

• /(\d\d\d)-(\d\d\d\d)/ “123-4567”– $1 contains “123”– $2 contains “4567”

Page 31: Introduction to Regular Expressions RootsTech 2013

Capture

• How do you convert – “Smith, James” and “Jones, Sally” to – “James Smith” and “Sally Jones”?

Page 32: Introduction to Regular Expressions RootsTech 2013

Capture

• How do you convert – “Smith, James” and “Jones, Sally” to – “James Smith” and “Sally Jones”?

• s/(\w+), (\w+)/$2 $1/

Page 33: Introduction to Regular Expressions RootsTech 2013

Caveats

• Check the language/application-specific documentation: some common shortcuts are not universal.

Page 34: Introduction to Regular Expressions RootsTech 2013

Questions

Ben Brumfield

[email protected]

FromThePage.com

ManuscriptTranscription.blogspot.com