brucexs wrote: > You get whatever regex plugin returns. >
It's fine with 4.5.06C now. Note that when regex=="", s[regexp]="" yields s=="" which means that by definition an empty regex matches the whole string. -- sgp ;------- just for testing local s,re,d s="something" d="A s: "++s re="" s[re]="" win.debug(d, "re:", re, "=> s:",s) re="some" s[re]="" s="something" d="B s: "++s re="some" s[re]="" win.debug(d, "re:", re, "=> s:",s) s="" d="C s: "++s re="some" s[re]="" win.debug(d, "re:", re, "=> s:",s) s="" d="D s: "++s re="" s[re]="" win.debug(d, "re:", re, "=> s:",s) quit Attention: PowerPro's Web site has moved: http://www.ppro.org Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
