Regex

From sheep
Revision as of 21:40, 14 September 2021 by Martin (talk | contribs) (Created page with "==Look ahead example== U+123 (?=U\+\d+)U\+(\d+).*) Look for something starting with a 'U+' followed by a number then match on the same string and then process that sequence...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Look ahead example

U+123

(?=U\+\d+)U\+(\d+).*)

Look for something starting with a 'U+' followed by a number then match on the same string and then process that sequence in this case capture the number