OCLOperators regExpSplit
(Created page with "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: {| class="wikitable" |dskjfkjsd |- |sd |- |kfkl |- |sdl |- |fkjf |- |ds |} See also Documentation:OCLOperators_regExpMatch")
 
No edit summary
Line 16: Line 16:
|ds
|ds
|}
|}
('ReadyForSpaceAndTurnItReadebleText').regExpSplit( '(?<!^)([A-Z][a-z]|(?<=[a-z])[A-Z])')->asSeparatedList(' ')
See also [[Documentation:OCLOperators_regExpMatch]]
See also [[Documentation:OCLOperators_regExpMatch]]

Revision as of 08:25, 19 March 2025

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(' ')

See also Documentation:OCLOperators_regExpMatch