I have the following string
string s = "efile:ReturnState/efile:ReturnDataState/efile:processBO/composition/forms/IT204CP";
I would like to replace the efile:
name space with an empty string and would like the result to be as follows
"ReturnState/ReturnDataState/processBO/composition/forms/IT204CP";
I also would like to know if there is a more generic way of doing this, as in something where I can replace any namespace like we see above and not just efile
?