Skip to main content
added 8 characters in body
Source Link
Peter Mortensen
  • 31.3k
  • 22
  • 109
  • 132

Well, youYou can simpllysimply use a regexregular expression library and solve that using regular expressions.

theUse expression that solves that is (\w+) and the variable in \1 (or $1 depending on the liblibrary implementation of REregular expressions).

Well, you can simplly use a regex library and solve that using regular expressions

the expression that solves that is (\w+) and the variable in \1 (or $1 depending on the lib implementation of RE).

You can simply use a regular expression library and solve that using regular expressions.

Use expression (\w+) and the variable in \1 (or $1 depending on the library implementation of regular expressions).

Source Link
Fawix
  • 469
  • 1
  • 8
  • 15

Well, you can simplly use a regex library and solve that using regular expressions

the expression that solves that is (\w+) and the variable in \1 (or $1 depending on the lib implementation of RE).