Hello,
Text String;
"The very Blue Sea is always blue unless its orange when its not BLUE sea"
The idea is to split on every "blue" regardless of case to give:
| The very | Blue Sea is always | blue unless its orange when its not | BLUE sea |
This works in Reg101 but not in Regex as to parse it gives the error: "Error: Nothing to parse. Enter a complete expression."
Code is:
(?i)\s+(?=\bblue\b)
Thank you