question regarding searching/replacing several characters at

Hello

I have a question regarding the built in function pub.string:replace.

Is it possible to map several characters to searchString? For example, say I want to search a character string for X and Y, and replace any occurance of those two characters with Z. How can I do this?

Is there a delimiter/separator that one can insert inbetween X and Y in the searchString input area in order to make this possible?

Please let me know when given the chance.

Thanks.

You can use a REGular EXpressions by setting the useRegex filed to true. Try [XY] in the replace field to do this.

Cheers,
Allen.

Thank you. I greatly appreciate your response.

Chris