Skip to content
Advertisement

How do you perform an operation on a phrase *only* if it’s outside backticks?

E.g. say you have the line:

JavaScript

How could you change only the second “example” to uppercase? E.g:

JavaScript

Advertisement

Answer

You could split by backtick and then make the replacement in the even indexed chunks:

JavaScript

Or, with a regular expression you could look ahead and only make the replacement when the number of backticks that follow it, is even:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement