RosettaCodeData/Task/Regular-expressions/Smalltalk/regular-expressions-1.st
2023-07-01 13:44:08 -04:00

18 lines
324 B
Smalltalk

|re s s1|
re := Regex fromString: '[a-z]+ing'.
s := 'this is a matching string'.
s1 := 'this does not match'.
(s =~ re)
ifMatched: [ :b |
b match displayNl
].
(s1 =~ re)
ifMatched: [ :b |
'Strangely matched!' displayNl
]
ifNotMatched: [
'no match!' displayNl
].
(s replacingRegex: re with: 'modified') displayNl.