--- In [email protected], "kottami" <[EMAIL PROTECTED]> wrote: > opath= "c:\hnc\work\pci" > ttt=regex.replaceg(opath,?"\\",?"\/","npath") > ;win.debug(ttt) > win.debug(npath)
Try this: opath=?"c:\hnc\work\pci" regex.replaceg(opath,?"\\",?"/","npath") win.debug(npath) BTW, why are you using regex.dll for this simple job? Use instead: npath=replacechars(opath,?"\/") 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/
