> On 22 Sep 2016, at 16:45, Keith Clarke <[email protected]> wrote: > > Thanks Mike, pilot error here - replacetext(tData,"<.*>",empty) looks to be a > viable direction of travel once correctly typed. Time to rest my eyes, > methinks! 8-) > Best, > Keith..
I think you might need replacetext(tData,"<.*?>",empty) The '?' cause the match to be non-greedy. Without it, everything from the first "<" to the last ">" will be replaced. Cheers Dave _______________________________________________ use-livecode mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode
