string_left
/*
** 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));
}
** 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));
}
[Please Login]
Projects: 15
Contributor: xot
comments powered by Disqus

Related: