Here is the string i am trying to match
"NNNN.[LOOP]S[SENSOR] [TEXT]"
Here is the RegEx i am using
"NNNN.([^\n\r/.]*)S([^\n\r/.]*) ([^\n\r/.]*)"
I want this to match "[LOOP]", "[SENSOR]" and "[TEXT]"
However it matches "[LOOP]S[SEN", "OR]" and "[TEXT]"
Please send help