> > Also, for several replaces the usage seems to require > return_code = regex.replaceg(string, "find", "replace", "output") > string = output > return_code = regex.replaceg(string, "find", "replace", "output") > string = output > rather than > return_code = regex.replaceg(string, "find", "replace", "string") > return_code = regex.replaceg(string, "find2", "replace2", "string") >
Have you tried built-in syntax support for basic regexp (it calls the plugin for you). string["find"] = "replace" string["find2"] = "replace" should work, but read the help for usage of global replace versus first occurence replace. 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/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/power-pro/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> 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/
