Hi,
Let me explain the scenerio: I have the input text "Mr. XYZ is a very nice person and have a very good taste of humor"
I want to write one replace string and once pattern string such that I can do the following things:
er -> gh
av -> th
these are two papperts that I can match with the pattern string (?<First>er)|(?<Second>av)
Suppose I have the replace string as (?<Third>gh)|(?<Fourth>th)
I want to replace first with the third, and second with fourth.
Is it possible? if yes how?
Thank you in advance,
Abbas Malik