str_clip (STRING*, number)

Clips the given number of characters from the beginning of the string.

Parameters:

STRING* STRING* to be clipped
number number of characters to be clipped from the beginning of the string.

Speed:

Fast

Example:

STRING* s = "Hello World";
...
str_clip(s,6); // now s == "World"

See also:

str_cpy, str_cat, str_cmp, str_cmpi, str_cmpni, str_len, str_trunc, str_stri

► latest version online