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.