-
Notifications
You must be signed in to change notification settings - Fork 6
/
README.Rmd
728 lines (565 loc) · 27.6 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
---
title: "regex in R cheatsheet"
output:
html_document:
fig_caption: yes
highlight: default
keep_md: yes
number_sections: no
self_contained: yes
theme: journal
toc: yes
---
<div id="TOC">
<ul>
<li><a href="#other-resources">Other resources</a></li>
<li><a href="#references">References</a></li>
<li><a href="#basic-regex">Basic regex</a><ul>
<li><a href="#specific-characters">Specific characters</a></li>
<li><a href="#quantifiers">Quantifiers</a></li>
<li><a href="#metacharacters">Metacharacters</a></li>
<li><a href="#character-class-shortcuts">Character class shortcuts</a></li>
</ul></li>
<li><a href="#anchors">Anchors</a><ul>
<li><a href="#look-ahead-and-look-behind">Look-ahead and look-behind</a></li>
</ul></li>
<li><a href="#additional-regex-things">Additional regex things</a><ul>
<li><a href="#metaquote-and-case-translations">Metaquote and case translations</a></li>
<li><a href="#special-variables">Special variables</a></li>
<li><a href="#modifiers">Modifiers</a></li>
<li><a href="#binding-operators">Binding operators</a></li>
</ul></li>
<li><a href="#function-for-captures">Function for captures</a></li>
<li><a href="#examples">Examples</a><ul>
<li><a href="#trimming-whitespace">Trimming whitespace</a></li>
<li><a href="#find-the-last-occurrence-of-a-string">Find the last occurrence of a string</a></li>
<li><a href="#capitalize-the-first-letter-of-each-word">Capitalize the first letter of each word</a></li>
<li><a href="#replacing-all-or-parts-of-a-string">Replacing all or parts of a string</a></li>
<li><a href="#inserting-a-character-between-two-matches">Inserting a character between two matches</a></li>
<li><a href="#matching-a-pattern-that-doesnt-include-another-pattern">Matching a pattern that doesn’t include another pattern</a></li>
<li><a href="#greed">Greed</a></li>
<li><a href="#extracting-from-between-parentheses-or-other-characters">Extracting from between parentheses (or other characters)</a></li>
<li><a href="#nesting-look-arounds-inside-of-other-look-arounds">Nesting (look-arounds inside of other look-arounds)</a></li>
<li><a href="#capitalizing-every-first-word-of-every-sentence">Capitalizing every first word of every sentence</a></li>
<li><a href="#capturing-a-word-before-or-after-a-keyword">Capturing a word before (or after) a keyword</a></li>
<li><a href="#extracting-time-formats-from-strings">Extracting time formats from strings</a></li>
<li><a href="#using-k-and-inserting-spaces-between-words">Using <code>\K</code> and inserting spaces between words</a></li>
<li><a href="#removing-words-with-repeating-letters">Removing words with repeating letters</a></li>
<li><a href="#prune-skip-fail"><code>(*PRUNE)</code>, <code>(*SKIP)</code>, <code>(*FAIL)</code>, <code>(?!)</code></a></li>
<li><a href="#extract-the-next-word-after-a-keyword">Extract the next word after a keyword</a></li>
<li><a href="#multiple-condition-matching">Multiple condition matching</a></li>
<li><a href="#remove-contents-around-characters">Remove contents around characters</a></li>
<li><a href="#split-on-whitespace-except-when-inside-parens">Split on whitespace except when inside parens</a></li>
<li><a href="#prime-numbers">Prime numbers</a></li>
<li><a href="#k-skip-fail-revisited"><code>\K</code>, <code>(*SKIP)</code>, <code>(*FAIL)</code> revisited</a></li>
<li><a href="#branch-reset">Branch reset</a></li>
<li><a href="#matching-valid-monthday-strings---non-capturing-vs-branch-reset-groups">Matching valid month/day strings - non-capturing vs branch reset groups</a></li>
<li><a href="#capture-items-from-a-list">Capture items from a list</a></li>
<li><a href="#nested-parens">Nested parens</a></li>
</ul></li>
</ul>
</div>
## Other resources
\* __[Regex 101](https://www.regex101.com)__
\* [Regex tester](http://regexpal.com)
\* __[ReGeX cRoSsWoRdS!](http://regexcrossword.com)__
\* __[regex golf!](http://regex.alf.nu)__
\* __[Text explainer](http://rick.measham.id.au/paste/explain.pl?regex=%28%3F<%3Dfoo%29%5Cs%2Afoo%5BA-Z%5D%5Cd%7B2%2C3%7D)__
\* [Explainer 1 (with flavors)](https://www.debuggex.com)
\* [Explainer 2 (javascript)](http://www.regexper.com)
## References
[general perl regex](#www.erudil.com/preqr.pdf)
[look-arounds](#http://www.perlmonks.org/?node_id=518444)
<div align=center><a href="http://xkcd.com/1171/"><img src="http://imgs.xkcd.com/comics/perl_problems.png" style="display: block; margin: auto;"/></a></div>
<div align=center><a href="http://xkcd.com/208/"><img src="http://imgs.xkcd.com/comics/regular_expressions.png" style="display: block; margin: auto;"/></a></div>
<div align=center><a href="http://xkcd.com/1313/"><img src="http://imgs.xkcd.com/comics/regex_golf.png" style="display: block; margin: auto;"/></a></div>
## Basic regex
### Specific characters
character | meaning
--------|--------
`\t` |tab
`\n` |newline (OS neutral)
`\r` |carriage return
`\f` |form feed
`\cx` |control character **C-_x_**
`\NNN` |octal code for ASCII character _**NNN**_
`\cN` |control character with the hex code _**N**_
`\xYY` |character with the hex code _**NN**_
`\uYYYY`|character with the hex code _**NNNN**_
### Quantifiers
These quantifiers apply to the preceding *atom*. By default, they are "greedy" meaning they attempt to match as many characters as possible. In order to match as *few* characters as possible, follow them with a `?`.
character | meaning
--------|--------
`*` |match **0** or more times, i.e., any number of times
`+` |match **1** or more times, i.e., at least once
`?` (`??`) |match (or lazy match) 0 or 1 times, i.e., at most once
`{n}` |match *exactly* **n** times
`{n,}` |match *at least* **n** times
`{n,m}` |match *at least* **n** times but *no more* than **m** times
### Metacharacters
The following characters need to be escaped because they have special meanings:
`\ | ( ) [ { ^ $ * + ? .`
character | meaning
--------|--------
`.` |match any single character (except `\n`; use `/s` to match `\n`, too)
<code>|</code>|matches either the subexpression preceding or following it
`( )` |groups subexpressions for capturing to $1, $2... (\\1, \\2, ... in R)
`(?: )` |groups subexpressions without capturing (cluster)
`{ }` |specifies a range of occurrences for the element preceding it
`[ ]` |define character class, matches any one of the characters contained within the brackets
`\` |escapes next character, i.e., modify the meaning of the next character
`\N` |matches the text from the N<sup>th</sup> group
`\K` |resets the beginning of the match to the current position (this only affects what is reported as the full match)
`^` |if the first character of a class, negates that class
`-` |unless first, last, or escaped (i.e., `[ad-]`: match a, d, or -), used for a range (`[a-b]`: match any character in the range from a to b)
### Character class shortcuts
These can be used on their own or within a character class.
character | long version | meaning
--------|---------------|--------
`\d` |`[0-9]` |digit
`\D` |`[^0-9]` |non-digit
`\s` |`[ \t\n\r\f]` |whitespace
`\S` |`[~ \t\n\r\f]` |non-whitespace
`\w` |`[a-zA-Z0-9_]` |"word" character
`\W` |`[^a-zA-Z0-9_]`|non-"word" character
## Anchors
Also known as *zero-width (length) assertions*, these do not match any characters but "look around" to see what comes before and/or after the current position.
character | meaning
--------|--------
`^` |match at the *beginning* of a string (or line if `/m` is used)
`$` |match at the *end* of a string (or line if `/m` is used)
`\b` |match at a "word" (`\w`) boundary
`\B` |match at *not* a "word" boundary
### Look-ahead and look-behind
Zero-length assertions can also be used to match extended patterns and require that a pattern match succeed (*positive assertion*) or fail (*negative assertion*).
character | meaning
--------|--------
`(?= )` |positive look-ahead assertion
`(?! )` |negative look-ahead assertion
`(?<= )` |positive look-behind assertion
`(?!= )` |negative look-behind assertion
Every extended pattern is written as a parenthetical group with a question mark as the first character. Notice that the `=` or `!` is always *last*. The directional indicator (`<`) is only present in the look-behind and comes *before* the positive or negative indicator.
Look-behind expressions cannot be of variable length. That means you cannot use quantifiers (?, *, +, or {1,5}) or alternation of different-length items inside them.
## Additional regex things
### Metaquote and case translations
character | meaning
--------|--------
`\Q` |quote (de-meta) characters until `\E`
`\U` |uppercase characters until `\E`
`\L` |lowercase characters until `\E`
`\l` |lowercase next character
`\u` |titlecase<sup>†</sup> next character
`\E` |end modification
<font size =1><sup>†</sup>Unicode concept which most often is equal to uppercase, but for certain characters (like the German "sharp s") there is a difference.</font>
### Special variables
character | meaning
--------|--------
``$` `` |characters to the left of the match
`$&` |characters that matched
`$'` |characters to the right of the match
`\N` |characters captured by the N<sup>th</sup> set of parentheses (if on the match side)
`$N` |characters captured by the N<sup>th</sup> set of parentheses (if *not* on the match side)
### Modifiers
These modifiers apply to the entire pattern (all except `/e` apply to both `m//` and `s///`)
character | meaning
--------|--------
`/i` |ignore case
`/g` |match globally (all)
`/m` |let `^` and `$` match next to embedded `\n`
`/s` |let `.` match `\n`
`/x` |ignore most whitespace and allow comments
`/e` |evaluate right-hand side of `s///` as an expression
### Binding operators
character | meaning
--------|--------
`=~` |TRUE if the regex matches
`!~` |TRUE if the regex does *not* match
## Function for captures
Common r functions like `regexpr`, `gregexpr`, or `regexec` are more focused on matching regular expressions than returning matches. Using a [helper function](https://github.com/raredd/rawr/blob/master/R/utils.R#L1304:L1355), we can extract the captures in a useful format.
```{r, results='hold'}
library('rawr')
x <- c('larry:35,M', 'alison:22,F', 'dave', 'lily:55,F')
p <- '(.*):(\\d+),([MF])'
m <- regexpr(p, x, perl = TRUE)
regcaptures(x, m)
## or in one step
# regcaptures2(x, p)
x <- 'ACCACCACCAC'
m <- gregexpr('(?=([AC]C))', x, perl = TRUE)
regcaptures(x, m)[[1]]
regcaptures2(x, m)[[1]]
```
## Examples
### Trimming whitespace
```{r, results='hold'}
p1 <- ' this text string has much white space
and even some new
lines '
## leading
gsub('^\\s+', '', p1)
## trailing
gsub('\\s+$', '', p1)
## both
gsub('^\\s+|\\s+$', '', p1)
## all whitespace (including line breaks, tabs, returns)
gsub('\\s+', '', p1)
```
With the `perl = TRUE` option, we can use `\h` and `\v` for "horizontal" or "vertical" whitespace, respectively, while not matching the other.
```{r, results='hold'}
cat(gsub('\\h+', '', p1, perl = TRUE))
cat(gsub('\\v+', '', p1, perl = TRUE))
```
Remove whitespace between single letters
```{r, results='hold'}
p1 <- c('L L C', 'P O BOX 123456 N Y', 'NEW YORK')
gsub('(?<=\\b\\w)\\s(?=\\w\\b)', '', p1, perl = TRUE)
```
### Find the last occurrence of a string
There are actually a number of ways to get the last occurrence that don't involve look-arounds, but if you think of "the last foo" as "foo that isn't followed by a string containing foo," you can express that notion like this:
```{r, results='hold'}
p1 <- 'the last word not followed by word'
p2 <- 'the last word not followed by werd'
gsub('word(?!.*word)', 'XXX', p1, perl = TRUE)
gsub('word(?!.*word)', 'XXX', p2, perl = TRUE)
```
### Capitalize the first letter of each word
We can use the combination of `regmatches` and `gregexpr` in R so see the letters this regex is matching. Then do a global sub (replace all the matches, not just the first) with the `\\U`ppercase version of the `\\1`<sup>st</sup> group.
```{r, results='hold'}
## positive look-behind assertion for a word boundary
## then match letters and replace with the uppercase version
p1 <- 'Look for A Lower-case Letter proceded by a Word Boundary'
regmatches(p1, gregexpr('(?<=\\b)([a-z])', p1, perl = TRUE))[[1]]
gsub('(?<=\\b)([a-z])', '\\U\\1', p1, perl = TRUE)
```
### Replacing all or parts of a string
Many substitutions match a chunk of text and then replace part or all of it. You can often avoid that by using look-arounds:
```{r, results='hold'}
p1 <- 'this is a wordy word and ends on a word'
gsub('(?<=word)', ',', p1, perl = TRUE) ## find every pattern match
gsub('(?<=word\\b)', ',', p1, perl = TRUE) ## only patterns on a word boundary
gsub('(?<=word$)', ',', p1, perl = TRUE) ## only patters on a string boundary
```
### Inserting a character between two matches
Sometimes we want to insert after a specific pattern but only if it is followed by another specific pattern.
```{r, results='hold'}
p1 <- 'this lookahead needs a hyphen, but this look ahead does not'
gsub('(?<=look)(?=ahead)', '-', p1, perl = TRUE)
```
The next defines two look-around groups. The first uses a look-behind (`(?<= )`) and defines a character class of non-capital letter characters followed by `(`; the second group defines (capital) letter characters followed by `(` but in a look-*ahead* (`(?= )`).
```{r, results='hold'}
p1 <- 'AbcDef(123)'
gsub('(?<=[^A-Z(])(?=[A-Z(])', ' ', p1, perl = TRUE)
```
### Matching a pattern that doesn't include another pattern
You might want to capture everything between foo and bar that doesn't include baz. The technique is to have the regex engine look-ahead at every character to ensure that it isn't the beginning of the undesired pattern:
```
foo # Match starting at foo
( # Capture
(?: # Complex expression:
(?!baz) # make sure we're not at the beginning of baz
. # accept any character
)* # any number of times
) # End capture
bar # and ending at bar
```
```{r, results='hold'}
## this example is greedy
p1 <- 'match when you love me but not when you do not love me :('
regmatches(p1, gregexpr('you((?:(?!not).)*)me', p1, perl = TRUE))[[1]]
```
The next regular expression uses a negative look-ahead (`(?! )`) to see if there is no character except a line break and no substring orange (`.*orange`), and if so then the dot will match any character except a line break as it is wrapped in a group (`).)`) and repeated (0 or more times, `*`). Next we look for apple and any character except a line break (`apple.*`) 0 or more times. Finally, the start and end of line anchors (`^ $`) are in place to make sure the input is consumed.
```{r, results='hold'}
p1 <- c('I like apples', 'I really like apples',
'I like apples and oranges', 'I like oranges and apples',
'I really like oranges and apples but oranges more')
p1[grepl('^((?!.*orange).)*apple.*$', p1, perl = TRUE)]
```
broken down:
```
^ # the beginning of the string
( # group and capture to \1 (0 or more times)
(?! # look ahead to see if there is not:
.* # any character except \n (0 or more times)
orange # 'orange'
) # end of look-ahead
. # any character except \n
)* # end of \1
apple # 'apple'
.* # any character except \n (0 or more times)
$ # before an optional \n, and the end of the string
```
### Greed
Placing `?` after quantifiers determine if we want to match until the last occurrence of the look-ahead or until the first occurrence.
```{r, results='hold'}
p1 <- 'match from a to z and after z if there is a z that follows but at not the last z because I said so'
## match a ... z but not a ... z which contains a not
regmatches(p1, gregexpr(' a\\s?((?:(?! not ).)*) z ', p1, perl = TRUE))[[1]]
regmatches(p1, gregexpr(' a(.*)z ', p1, perl = TRUE))[[1]]
## insert the ? to get each match
regmatches(p1, gregexpr(' a\\s?((?:(?! not ).)*?) z ', p1, perl = TRUE))[[1]]
regmatches(p1, gregexpr(' a(.*?)z ', p1, perl = TRUE))[[1]]
```
### Extracting from between parentheses (or other characters)
```{r, results='hold'}
p1 <- 'extract (everything) between parentheses (if any)'
## greedily
regmatches(p1, gregexpr('(?=\\().*(?<=\\))', p1, perl = TRUE))[[1]]
## not
regmatches(p1, gregexpr('(?<=\\().*?(?=\\))', p1, perl = TRUE))[[1]]
regmatches(p1, gregexpr('(?=\\().*?(?<=\\))', p1, perl = TRUE))[[1]]
```
### Nesting (look-arounds inside of other look-arounds)
A look-around sub-expression inherits a starting position from the enclosing expression and can walk all around relative to that position without affecting the position of the enclosing expression. They all have independent (though initially inherited) bookkeeping for where they are in the string.
The concept is pretty simple, but the notation becomes hairy very quickly. Let's look at the real example to add space after punctuation sign. We want a space after any comma (or any punctuation by using `[,.: etc]`) that is not nestled between two digits (since this rule should not apply to numbers, presumably):
```
(?<=, # after a comma,
(?! # but not matching
(?<=\d,) # digit-comma before, AND
(?=\d) # digit afterward
)
)
using De Morgan's law, !(A & B) <=> !A | !B, this is equivalent to
(?<=, # after a comma
(?: # but either
(?<!\d,) # not matching digit-comma before
| # OR
(?!\d) # not matching digit afterward
)
)
```
```{r, results='hold'}
p1 <- 'this is an unformatted,ugly sentence.no spaces one,two,many 1,000.0 commas'
gsub('(?<=,(?!(?<=\\d,)(?=\\d)))', ' ', p1, perl = TRUE)
gsub('(?<=[,.](?!(?<=\\d[,.])(?=\\d)))', ' ', p1, perl = TRUE)
```
### Capitalizing every first word of every sentence
```{r}
txt <- "this is just a test! i'm not sure if this is o.k. or if it will work? who knows? regex is sorta new to me... There are certain cases that I may not figure out. sad!"
gsub("([^.!?\\s])([^.!?]*(?:[.!?](?!['\"]?\\s|$)[^.!?]*)*[.!?]?['\"]?)(?=\\s|$)", "\\U\\1\\E\\2", txt, perl = TRUE)
```
Explanation:
```
[^.!?\\s] # match sentence ending in punctuation (. or !) or end of string
[^.!?]* # first char is non-punct, non-whitespace
(?: # greedily consume up to punctuation
[.!?] # group for unrolling the loop
(?!['\"]?\\s|$) # (special) inner punctuation ok if
[^.!?]* # not followed by ws or EOS
)* # greedily consume up to punctuation
[.!?]? # zero or more (special normal*)
['\"]? # optional ending punctuation
(?=\\s|$)" # optional closing quote
```
### Capturing a word before (or after) a keyword
This is an example of creating and referencing groups. Each `( )` defines a group and can be referenced with `\\N` for the N<sup>th</sup> group.
```{r, results='hold'}
p1 <- 'I want this here-keyword there'
gsub('(.+\\s)(\\w+)(\\s|-)(keyword)(\\s|-)(\\w+).*', '\\2', p1, perl = TRUE)
gsub('(.+\\s)(\\w+)(\\s|-)(keyword)(\\s|-)(\\w+).*', '\\6', p1, perl = TRUE)
```
### Extracting time formats from strings
```{r, results='hold'}
p1 <- c('R uses 1:5 for 1, 2, 3, 4, 5.',
'At 3:00 we will meet up and leave by 4:30:20.',
'We will meet at 6:33.', 'He ran it in 0:22.34829985234 seconds.')
regmatches(p1, gregexpr('\\d{0,2}:\\d{2}(?:[:.]\\d+)?', p1))
```
### Using `\K` and inserting spaces between words
The `\K` escape sequence resets the starting point of the reported match and any previously consumed characters are no longer included, basically throwing away everything matched up to that point.
Another example of using capturing groups to capture to matched context and referring back to each matched group in the replacement.
```{r, results='hold'}
p1 <- c('CamelCaseIsFun','ThisIsRegexxxxx')
gsub('[a-z]\\K(?=[A-Z])', ' ', p1, perl = TRUE)
```
```
[a-z] # any character of a to z
\K # \K (resets the starting point of the reported match)
(?= # look ahead to see if there is:
[A-Z] # any character of A to Z
) # end of look-ahead
```
### Removing words with repeating letters
It may be useful to filter out words with repeating characters which are not really words at all.
```{r, results='hold'}
p1 <- "aaaahahahahaha that was a good banana joke ahahah haha aha harhar"
gsub('\\b(\\S+?)\\1\\S*\\b', '', p1, perl = TRUE)
```
```
\b # the boundary between a word char (\w) and
# something that is not a word char
( # group and capture to \1:
\S+? # non-whitespace (all but \n, \r, \t, \f, and " ") (1 or
# more times (matching the least amount possible))
) # end of \1
\1 # what was matched by capture \1
\S* # non-whitespace (all but \n, \r, \t, \f, and " ") (0 or
# more times (matching the most amount possible))
\b # the boundary between a word char (\w) and
# something that is not a word char
```
### `(*PRUNE)`, `(*SKIP)`, `(*FAIL)`, `(?!)`
`(*PRUNE)` verb causes the match to fail at the current starting position in the subject if the rest of the pattern does not match.
`(*SKIP)` acts like `(*PRUNE)`, except that if the pattern is unanchored, the bumpalong advance is not to the next character, but to the position in the subject where `(*SKIP)` was encountered.
`(*FAIL)` or `(?!)` verb forces a matching failure at the given position in the pattern.
[See also](https://regex101.com/r/hS1rN1/1)
```{r, results='hold'}
p1 <- c('met','meet','eel','elm')
gsub('\\w*(ee|me)\\w*(*SKIP)(*FAIL)|e', '', p1, perl = TRUE)
gsub('\\w*[em]e\\w*(*SKIP)(?!)|e', '', p1, perl = TRUE)
```
```
\w* # match any word character [a-zA-Z0-9_], 0 or more times, greedy
( # group and capture to \1:
ee|me # ee or me, literally
) # end \1
\w* # match any word character [a-zA-Z0-9_], 0 or more times, greedy
(*SKIP) # acts like (*PRUNE), except that if the pattern is unanchored,
# the bumpalong advance is not to the next character, but to the
# position in the subject where (*SKIP) was encountered
(*FAIL) # verb synonymous with (?!), forces a matching failure at the given
# position in the pattern
| # OR
e # e, literally
```
### Extract the next word after a keyword
```{r, results='hold'}
key <- 'the'
p <- "The yellow log is in the stream and under the dog"
regmatches(p, gregexpr(sprintf('(?i)(?<=%s\\s)\\w+', key), p, perl = TRUE))[[1]]
```
### Multiple condition matching
```{r}
# http://stackoverflow.com/questions/33470134/r-multiple-conditional-matching-in-a-string
x <- c('rose','farm','rose farm','floral','farm floral','tree farm')
# x[grepl('farm | farm', x)]
grep('((?=.*farm)(?=.*rose)|(?=.*farm)(?=.*floral)|(?=.*farm)(?=.*tree))', x,
value = TRUE, perl = TRUE)
```
### Remove contents around characters
```{r, results='hold'}
# http://stackoverflow.com/questions/30532491/removing-contents-of-bracelets
x <- 'sal{del{rf}{sfddfdffdf}ghladfs}wds{w12rf}qq'
gsub('\\{(?:[^{}]+|(?R))*+}', '', x, perl=TRUE)
## unbalanced braces
x <- "sal{del{{rf}ghla}dfs}wds{w12rf}qq "
paste0(gsub('\\w+}|[{} ]', '', strsplit(x, '\\{\\w+')[[1]]), collapse = '')
```
### Split on whitespace except when inside parens
```{r}
# http://stackoverflow.com/questions/39733645/split-string-by-space-except-whats-inside-parentheses
x <- '(((K05708+K05709+K05710+K00529) K05711),K05712) K05713 K05714 K02554'
strsplit(x, "(\\((?:[^()]++|(?1))*\\))(*SKIP)(*F)| ", perl=TRUE)[[1]]
```
### Prime numbers
The regular expression `^1?$|^(11+?)\1+$` matches non-zero length strings in a unary number system which can be divided evenly into blocks of 1s larger than length 1 or 1 itself. Got that?
```{r}
decToUna <- function(x) strrep('1', x)
is.prime <- function(x) !grepl('^1?$|^(11+?)\\1+$', decToUna(x))
x <- 1:100
x[is.prime(x)]
```
### `\K`, `(*SKIP)`, `(*FAIL)` revisited
These expressions will skip a match if another match is found.
```{r, results='hold'}
x <- 'babbb'
gsub('bab(*SKIP)(*FAIL)|b', '', x, perl = TRUE)
gsub('bab(*SKIP)(*F)|b', '', x, perl = TRUE)
gsub('ba(?=b)\\K|b', '', x, perl = TRUE)
ore::ore_subst('bab\\K|b', '', x, all = TRUE)
```
```{r, results='hold'}
x <- 'babbb'
gsub('bab\\K|b', '', x, perl = TRUE)
```
http://stackoverflow.com/questions/41924971/why-does-k-appear-to-consume-a-character-in-base-rs-gsub
>The regexp functions in R and PHP are based on PCRE, so they avoid getting stuck on a zero-length match by backtracking like PCRE does. But the `gsub()` function to search-and-replace in R also skips zero-length matches at the position where the previous non-zero-length match ended, like Python does.
### Branch reset
Alternatives in a branch reset expression share the same capture group:
```{r}
x <- c('a', 'b', 'c')
p_branch <- '(?|(a)|(b)|(c))'
## match is always in $1
gsub(p_branch, '1=\\1; 2=\\2; 3=\\3', x, perl = TRUE)
## match is only in corresponding capture group $n
p_alt <- '(a)|(b)|(c)'
gsub(p_alt, '1=\\1; 2=\\2; 3=\\3', x, perl = TRUE)
```
```{r, results='hold'}
x <- c('First Middle Last', 'First MI Last', 'First MI. Last')
p <- '(?i)(?<first>\\w+) (?<middle>\\w+) (?<last>\\w+)'
## fails when no middle capture group is found
rawr::regcaptures2(x, p)
## error
p <- '^(?<first>\\w+) (?<middle>\\w+) (?<last>\\w+)$|^(?<first>\\w+) (?<middle>[\\w.]+) (?<last>\\w+)$'
# rawr::regcaptures2(x, p)
p <- '^(?|(?<first>\\w+) (?<middle>\\w+) (?<last>\\w+)$|(?<first>\\w+) (?<middle>[\\w.]+) (?<last>\\w+)$)'
rawr::regcaptures2(x, p)
```
### Matching valid month/day strings - non-capturing vs branch reset groups
For alternative matches in **non-capturing groups**, there are six different group possibilities. In the **branch reset** examples, `$1` always holds the month and `$2` always holds the day.
```{r, results='hold'}
x <- c(
'03/3', '6/31', '12/02', '9/2', '02/12', ## valid dates
'09/31', '6/31', '2/31' ## invalid dates
)
p <- c( ## expressions for months with
'(0?[13578]|1[02])/([012]?[0-9]|3[01])', ## 31 days
'(0?[469]|11)/([012]?[0-9]|30)', ## 30 days
'(0?2)/([012]?[0-9])' ## 29 days
)
p_noncap <- sprintf(
'^(?:%s)$', paste0(p, collapse = '|')
)
p_branch <- sprintf(
'^(?|%s)$', paste0(p, collapse = '|')
)
do.call('rbind', rawr::regcaptures2(x, p_noncap, FALSE))
do.call('rbind', rawr::regcaptures2(x, p_branch, FALSE))
```
### Capture items from a list
```
(?: # non-capture group
\G(?!\A)[,;]? # match the end of the previous successful match followed by [,;] 1 or 0 times
| # or
\w: # "word" characters followed by :
) # end of non-capture group
\R # a line break sequence
\h* # 0 or more horizontal whitespaces
\K # match reset operator discarding all the text matched so far
[^\s,]+ # 1 or more chars other than whitespace and [,;]
```
```{r, results='hold'}
# https://stackoverflow.com/questions/44831765/regex-r-and-commas
x <-
"
here is a list of things that I need to do..
todo:
eat,
sleep
drink,
party;
repeat
then I'm done!
"
p <- '(?:\\G(?!\\A)[,;]?|\\w:)\\R\\h*\\K([^\\s,;]+)'
rawr::regcaptures2(x, p)[[1L]]
```
### Nested parens
Removing all nested parentheses but keep outermost pair
```
^\\([^()]+\\)(?!$) # special case to leave the parens if it encompasses
# the entire value of the string
^\((?=.+\)$)(*SKIP)(*FAIL) # do not match a pair of parentheses that encloses
# the string from start to end
^\([^\(\)]+\)(?!$) # match paren at the beginning that is closed earlier
```
```{r, results='hold'}
# https://stackoverflow.com/q/60837843/2994949
x <- c(
'(keep all)',
'(keep (not this) this)',
'((dont keep this (or this)) but keep this)'
)
p <- '^\\([^()]+\\)(?!$)|^\\((?=.+\\)$)(*SKIP)(*FAIL)|\\((?:[^()]|(?R))*\\)'
gsub(p, '', x, perl = TRUE)
```