sampath meka

sampath meka

  • NA
  • 41
  • 11.7k

Regular Expressions

Mar 12 2014 5:03 AM
Hello,
           Kindly help me i am stuck in the following expression...
 
string strTest = " (!(2VH_AKTIVLENKUNG_UND_HSR) + !(ALLRAD) + (B47D20 + G011, B47D20 + G012, B48B20 + G011, B48B20 + G012, B57D30 + G011, B57D30 + G012, B58B30 + G011, B58B30 + G012, G011 + N63B40, G012 + N63B40,)";
 
             string r = @"(?((?=.*\)))(?<=\)), |, )";
                foreach(string s in Regex.Split(strTest, r))
                {
                   Console.WriteLine(s);
}
 
 
I am using the above expression kindly correct to make the above expression work
 
Expected Output:
2VH_AKTIVLENKUNG_UND_HSR
 ALLRAD 
B47D20 + G011 
B47D20 + G012
B48B20 + G011
B48B20 + G012
B57D30+  G011
B57D30+ G012
B58B30 + G011
B58B30 + G012
G011 + N63B40
G012 + N63B40
 
 
 
 
 
 
 

Answers (5)