Quantcast
Channel: RegEx Return found Group IF String Does NOT start with ' - VSCode - Search/Replace - Stack Overflow
Viewing all articles
Browse latest Browse all 3

Answer by Wiktor Stribiżew for RegEx Return found Group IF String Does NOT start with ' - VSCode - Search/Replace

$
0
0

I suggest using

Find What:      \{\{[\s\n]*(?!['\s\n])(.*')[\s\n]*(\|[\s\n]+translate)\b
Replace With: {{ '$1 $2

See online regex demo (altered to reflect how it works in VSCode).

enter image description here

Details

  • ^ - start of a line
  • \{\{ - a {{ substring
  • [\s\n]* - 0+ whitespaces/linebreaks
  • (?!['\s\n]) - a negative lookahead failing the match if immediately to the right of the current location there is a ' or a whitespace (linebreak included)
  • (.*') - Capturing group 1: any 0+ chars other than line break chars, as many as possible and then a ' char
  • [\s\n]* - 0+ whitespaces/linebreaks
  • (\|[\s\n]+translate)\b - Group 2: a |, 1+ whitespaces/linebreaks and a whole word translate.

The replacement is ', Group 1 backreference (referring to the value captured in Group 1), space and Group 2 backreference (referring to the value captured in Group 2).


Viewing all articles
Browse latest Browse all 3

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>