No regex for text manipulation

Endercraft

Moderator (& bug finder :D)
Is it possible to add the "Plain text (no regex)" option for each text manipulation currently using regex ?
 

sampleuserhere

Active member
It should be very possible, replace() function in Java accepts regular text, while replaceAll() accepts regex.

For further context.

You can somewhat replicate this by escaping all the special characters with Text Manipulation > Replace All.

Match the following regexp.
Code:
[\$\?\^\\\|\[\]\{\}\(\)\*\+\.]

Then replace the match with \\$0.
 

Endercraft

Moderator (& bug finder :D)
I know I can do that but it gets annoying and users that don't know about regex may not be able to use the actions and not understand why.
 
Top