OCLOperators regExpSplit
This page was created by Hans.karlsen@mdriven.net on 2025-02-19. Last edited by Hans.karlsen@mdriven.net on 2025-03-19.

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

See also Documentation:OCLOperators_regExpMatch