digitalmars.D.learn - regex in tango.text.Util.containsPattern
- seany (5/5) Nov 22 2013 How do i find strings in form of XYYYY... (in regex: X{Y*} using
- Jacob Carlborg (7/12) Nov 24 2013 That function is for finding a string or array inside another array.
- seany (1/1) Nov 24 2013 ah! thank you soo much
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
Nov 22 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
Nov 24 2013








"seany" <seany uni-bonn.de>