what is equivalent to j = j.replace(/MsoHeading/gi, ""); in c# using regex ??
Loading
what is equivalent to j = j.replace(/MsoHeading/gi, ""); in c# using regex ??
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Dec 19, 2014, 8:55 AM
j = Regex.Replace (j, "($i)MsoHeading", "");
which is automatically global.