string manipulation question

Bob Stockler bob at trebor.iglou.com
Fri Dec 10 17:33:45 PST 2004


On Fri, Dec 10, 2004 at 07:47:21PM -0500, Robert Haussmann wrote:
| I'm sure there is probably a very easy way to do the
| following, but it eludes me at the moment.  How
| can I take a string, and replace every instance of
| one character (a single quotation mark) with two
| characters (two single quotes)?
| 
| In other words:
| 	O'Brian becomes O''Brian
| 	O'Brian's becomes O''Brian''s

I use this subroutine to modify the string held in Misc so
all backslashes in it are escaped with another backslash
for screen display purposes.  

  DXlate  If:
        Then: ' Escape backslash characters with a backslash for display
        Then: Misc1 = Misc { "" ; Misc = "" ; cnt = "1"
  DXlate1 If:
        Then: Misc = Misc & mid(Misc1,cnt,"1")
          If: mid(Misc1,cnt,"1") eq BackSlash
        Then: Misc = Misc { BackSlash
          If: cnt lt len(Misc1)
        Then: cnt = cnt + "1" ; goto DXlate1
        Then: return

Modify it to do a similar thing for single quotes.

Bob

-- 
Bob Stockler - bob at trebor.iglou.com
Author: MENU EDIT II - The BEST Creator/Editor/Manager for filePro User Menus.
Fully functional (time-limited) demos available by email request (specify OS).


More information about the Filepro-list mailing list