Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/String/StrTrimLeft


Ignore:
Timestamp:
08/20/10 09:23:05 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/String/StrTrimLeft

    v1 v2  
    1 STrTrimLeft
     1= StrTrimLeft =
     2Trim leading spaces, tabs, newlines, or carriage returns from a string.
     3
     4{{{
     5string StrTrimLeft(string& str);
     6}}}
     7
     8== Parameters ==
     9
     10 * str - string to be trimed
     11
     12== Return Value ==
     13
     14 * Returns the string with leading spaces, tabs, newlines, or carriage returns removed.
     15
     16== Remarks ==
     17
     18
     19== Example ==
     20
     21{{{
     22string strVal = "   123";
     23string strNew = StrTrimLeft(strVal);
     24}}}
     25
     26The string strNew will contain "123" without the leading spaces.
     27
     28== See Also ==
     29
     30 * StrToInt
     31 * StrFmt
     32