tags:

views:

24

answers:

1

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

+4  A: 

Simply replace all curly braces?

Regex.Replace(myString, "[{}]", "");
Joey