OCLOperators regExpSplit
This page was created by Hans.karlsen on 2025-02-19. Last edited by Edgar on 2025-08-31.
RegExpSplit is versatile to find places to split a string
'dskjfkjsd sd;kfkl sdl,fkjf ds'.regExpSplit( '[,\s;]+' ) -- will split on ; and , and space Result:
| dskjfkjsd | 
| sd | 
| kfkl | 
| sdl | 
| fkjf | 
| ds | 
('ReadyForSpaceAndTurnItReadebleText').regExpSplit( '(?<!^)(?=[A-Z][a-z]|(?<=[a-z])[A-Z])')->asSeparatedList(' ')
| Ready For Space And Turn It Readeble Text | 
