G
Guest
I have a string with some escape charaecters that need to be processed in our
file
Say for example the string might have something like following
<escape V=".sp2" />
step 1:
This has to be replaced to "escape V=".sp2"
step 2:
Later it has to be reversed as original(<escape V=".sp2" />) after some
processing.
We need a soln with respect to regex in C#.
There may may be many instances od this string in the file.so we need to
replace all instances.Please provide a solution
file
Say for example the string might have something like following
<escape V=".sp2" />
step 1:
This has to be replaced to "escape V=".sp2"
step 2:
Later it has to be reversed as original(<escape V=".sp2" />) after some
processing.
We need a soln with respect to regex in C#.
There may may be many instances od this string in the file.so we need to
replace all instances.Please provide a solution