std.regex.split(l, ctRegex!`[\s-\)\(\.]`);I'm trying too split a string on spaces and stuff... but it is returning empty strings and other matches(e.g., ()).
I realize I can delete afterwards but is there a direct way from split or ctRegex?
AlphaPurned via Digitalmars-d-learn Thu, 20 Feb 2020 14:06:14 -0800
std.regex.split(l, ctRegex!`[\s-\)\(\.]`);I'm trying too split a string on spaces and stuff... but it is returning empty strings and other matches(e.g., ()).
I realize I can delete afterwards but is there a direct way from split or ctRegex?