Hello All Request your valueable time in helping me to find substring values using Regular Expressions..
This is my input
"ADMIN:YESEXT:NOBAT:NOBOM:NO"
I should be able to extract the following things to output
ADMIN:YES
EXT:NO
BAT:NO
BOM:NO
I used the following regex to get just the ADMIN: string
^\s?(?:ADMIN:)
How should i modify the regex expression to get the required output