Regex: Difference between revisions

From sheep
Jump to navigation Jump to search
(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...")
 
(No difference)

Latest revision as of 21:40, 14 September 2021

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