I have a text like test{0:##}test2{Order:C}test3. I need to use regex and find the text test , test2 , test3 which are not inside the {...}.
For text inside the curly braces {0:##} i used
@"{0:(.*?)}"
But trying for text not inside the Curly braces, facing some difficulties.
Instead of matching everything outside the braces (as suggested by Joey), it might be easier to split the string into an array, by an expression that matches only the braces.