I'm apparently not running on all cylinders today. My copy/paste didn't. Here's a corrected version, after which I think I'll bow out gracefully for today:

If you want a regex search instead of an exact match for "ab" then you'd set up a filter first and then run a variation of the above repeat on the results of your filtered text. Something like this:

  put fld 1 into var
  filter var with "a*b*"
  repeat for each line tLine in var
    get matchChunk(tLine,"(a*b*)",tMatchStart,tMatchEnd)
    put tMatchStart && tMatchEnd & cr after tList
  end repeat


--
Jacqueline Landman Gay         |     [EMAIL PROTECTED]
HyperActive Software           |     http://www.hyperactivesw.com
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to