f_strip.srf 454 B

12345678910111213141516171819202122
  1. $PBExportHeader$f_strip.srf
  2. global type f_strip from function_object
  3. end type
  4. forward prototypes
  5. global function string f_strip (string a_szarg)
  6. end prototypes
  7. global function string f_strip (string a_szarg);Integer nLength, nPos
  8. nLength = Len( a_szArg)
  9. For nPos = 1 To nLength
  10. Choose Case Mid( a_szArg, nPos, 1)
  11. Case "~t", "~r", "~n", '"',":"
  12. a_szArg = Replace( a_szArg, nPos, 1, " ")
  13. End Choose
  14. Next
  15. Return Trim( a_szArg)
  16. end function