regex to replace the entire character in string

136 views Asked by At

the string may have characters like "abc @ xyz 1234-4321", i need regex to replace the characters inside the quoted string with the another string using text replace action in final builder.

Thanks in advance ,Any help would be appreciable.

1

There are 1 answers

0
Astrogat On

".*?" will find anything between two ".

The dot matches everything, while the * tells it that you want somewhere between zero and many occurences. You can then just replace it with "yourstring".

If you don't want to write "yourstring" you could also use a capture group "(.*?)" but honestly it's overkill for this.