RosettaCodeData/Task/Regular-expressions/AppleScript/regular-expressions-1.applescript

12 lines
234 B
AppleScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
try
find text ".*string$" in "I am a string" with regexp
on error message
return message
end try
try
change "original" into "modified" in "I am the original string" with regexp
on error message
return message
end try