www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - regex in tango.text.Util.containsPattern

reply "seany" <seany uni-bonn.de> writes:
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
parent reply Jacob Carlborg <doob me.com> writes:
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
parent "seany" <seany uni-bonn.de> writes:
ah! thank you soo much
Nov 24 2013