regex in tango.text.Util.containsPattern

Jacob Carlborg doob at me.com
Sun Nov 24 04:51:29 PST 2013


On 2013-11-22 21:03, seany wrote:
> How do i find strings in form of XYYYY... (in regex: X{Y*} using
> tango.text.Util.containsPattern  ? the documentation does not mention
> regex.
>
> So i have a string where multiple substrngs in the format X{Y*} can
> appear, and I would like to identify all of them, iteratively

That function is for finding a string or array inside another array. 
It's not for regular expression. For regular expression you want 
tango.text.Regex or if you're using D2 then std.regex would be a better 
choice.

-- 
/Jacob Carlborg


More information about the Digitalmars-d-learn mailing list