home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / kcss0012.zip / CSS / KCSTRLIB.HSS < prev    next >
Text File  |  1998-02-07  |  1KB  |  32 lines

  1. /*  Copyright (c) 1998 IBK-Landquart-Switzerland. All rights reserved.
  2.  *
  3.  *  Module      :  KcStrLib.hss
  4.  *  Application :  CSS String Library: Header
  5.  *  Author      :  Peter Koch, IBK
  6.  *
  7.  *  Date        Description                                 Who
  8.  *  --------------------------------------------------------------------------
  9.  *  Feb 1998    First release                               P.Koch, IBK
  10.  */
  11.  
  12. extern const strVersion;
  13.  
  14. strExport(const string);
  15. strImport(const string);
  16. strIsInteger(const string);
  17. strIsNumber(const string);
  18. strLength(const string);
  19. strLower(const string);
  20. strRemoveWords(const string, const start, [const count]);
  21. strSplitConnectString(const connstr, [var& password, var& connection, var& database]);
  22. strSplitPath(const path, [var& ext, var& dir, var& drive]);
  23. strStrip(const string);
  24. strStripExtension(const filename);
  25. strStripLeading(const string);
  26. strStripTrailing(const string);
  27. strSubString(const string, const start, [const count, const padchar]);
  28. strUpper(const string);
  29. strWordCount(const string);
  30. strWords(const string, const start, [const count]);
  31.  
  32.