4 lines
89 B
Text
4 lines
89 B
Text
s = "I am a string"
|
|
if ismatch(r"string$", s)
|
|
println("'$s' ends with 'string'")
|
|
end
|