I've tried to replace some text in Google Slides with replaceAllText
, it works fine if I provide the string, however I can't find the solution for regex.
What I want to change is:
N = 500
Regex variations I tried with replaceAllText
:
/N [=, 0-9]*/
"N [=, 0-9]*"
"N = [0-9]*"
"N = \d*"
/N = \d*/
but nothing worked.
How can I use replaceAllText
with regex?