RosettaCodeData/Task/Regular-expressions/Nim/regular-expressions.nim
2023-07-01 13:44:08 -04:00

9 lines
141 B
Nim

import re
var s = "This is a string"
if s.find(re"string$") > -1:
echo "Ends with string."
s = s.replace(re"\ a\ ", " another ")
echo s