string_left

Downloadstring_left(str,num)   Returns the given number of characters from the beginning of the given string.
/*
**  Usage:
**      string_left(str,num)
**
**  Arguments:
**      str     a string of text
**      num     number of characters
**
**  Returns:
**      the given number of characters from the
**      beginning of the given string
**
**  GMLscripts.com
*/

{
    return (string_copy(argument0,1,argument1));
}

Click if you've used this script[Please Login]
Projects: 15


comments powered by Disqus