Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_ltstr() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_LTSTR()

 DESCRIPTION

 C_LTSTR() left justifies a given character string maintaining the
 string's length.  The space removed from the beginning of the
 string is placed on the end to maintain the length.

 SYNTAX

 C_LTSTR(string)

 PARAMETERS

 string (C) is the character string to left justify.

 RETURNS

 C_LTSTR() returns a character string.

 EXAMPLES

 s1 = "      Left Justify String"

 ? len(s1) --> 25         && Length of string is 25

 r1 = c_ltstr(s1)         && Left justify string

 ? r1 --> "Left Justify String      "   && Leading spaces are now at end

 ? len(r1) --> 25         && Length is still 25


See Also: C_RTSTR()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson