On 2/20/20 4:46 PM, Ali Çehreli wrote:
>auto range = std.regex.splitter!(No.keepSeparators)(l,
> ctRegex!`[\s-\)\(\.]+`);
After realizing that No.keepSeparators is the default value anyway, I
tried 'split' and it worked the way you wanted. So, perhaps all you
needed was that extra '+' in t
On 2/20/20 2:02 PM, AlphaPurned wrote:> 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?
It