Hello All,
I want to break the below string by using the Regular Expression of Regex.Match:
String1:(G030, G031, G032, G038, F090) + !(2VH_AKTIVLENKUNG_UND_HSR)
String2:(G030, G031, G032, G038, F090) + 2VH_AKTIVLENKUNG_UND_HSR
Output1:
(G030, G031, G032, G038, F090)
!(2VH_AKTIVLENKUNG_UND_HSR)
Output2:
(G030, G031, G032, G038, F090)
(2VH_AKTIVLENKUNG_UND_HSR)
Thanks in Advance
Jithendra Pasala