CharacterArray.st
changeset 21670 ed0e1a83f86c
parent 21639 49330e00b2e3
child 21672 829c0b5dcc80
--- a/CharacterArray.st	Fri Mar 24 09:34:19 2017 +0100
+++ b/CharacterArray.st	Mon Mar 27 13:16:27 2017 +0200
@@ -5638,27 +5638,6 @@
 ! !
 
 
-!CharacterArray methodsFor:'matching - regex'!
-
-matchesRegex:regexString caseSensitive:aBoolean
-    "Test if the receiver matches a regex.
-     May raise RxParser>>regexErrorSignal or child signals.
-     This is a part of the Regular Expression Matcher package,
-        (c) 1996, 1999 Vassili Bykov.
-     Refer to `documentation' protocol of RxParser class for details."
-
-    aBoolean ifFalse:[
-        ^ self matchesRegexIgnoringCase:regexString
-    ] ifTrue:[
-        ^ self matchesRegex:regexString
-    ].
-
-    "
-     'hello world' matchesRegex:'h.*d'.
-    "
-
-    "Created: / 13-12-2010 / 11:01:49 / cg"
-! !
 
 !CharacterArray methodsFor:'padded copying'!