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

12 lines
234 B
AppleScript
Raw Permalink Normal View History

2013-04-10 23:57:08 -07: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