Hi there
I want in c# to change the responce of the server using fiddlercore, I know i can do it like this
oS.utilReplaceInResponse("Microsoft", "Bayden");
BUT what happens if i want to change some dynamic text data between tags to something that is always the same like
oS.utilReplaceInResponse("<version>this can be 5,6,7,8 and change every month</version>", "<version>5</version>");
I want to be able to replace the text or number between some tags that might change over time to always return 5
i have tried with .? with * with .* and they all fail how do i do this ?
cheers
I want in c# to change the responce of the server using fiddlercore, I know i can do it like this
oS.utilReplaceInResponse("Microsoft", "Bayden");
BUT what happens if i want to change some dynamic text data between tags to something that is always the same like
oS.utilReplaceInResponse("<version>this can be 5,6,7,8 and change every month</version>", "<version>5</version>");
I want to be able to replace the text or number between some tags that might change over time to always return 5
i have tried with .? with * with .* and they all fail how do i do this ?
cheers