I have an issue about regex
This is my string str = 'tât" and I'm using regex for
javascript:
str = str.replace(/[^\w\\-]+/g, ''); => result: ttc#:
str = (new Regex(@"[^\w\\-]+")).Replace(str, ""); => result: tât
I want to make result of C# like javascript, Please help me.
Thanks so much