Get all values from a string except the brackets { }
So the string;
now table { five }
should be
now table five
I need it to be as regex
Get all values from a string except the brackets { }
So the string;
now table { five }
should be
now table five
I need it to be as regex
Simply replace all curly braces?
Regex.Replace(myString, "[{}]", "");