On 6/9/2021 1:10 PM, Paul Dupuis via use-livecode wrote:
on mouseup
put field "import" into timport
put replacetext(timport,"(.*)"," ") into field "import"
end mouseup
I think parenthesis are are reserved character in regex, so them may
need to be escaped with a backslash like: (my regex is a little rusty)
on mouseup
put field "import" into timport
put replacetext(timport,"\(.*\)"," ") into field "import"
end mouseup
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode