String.lstrip
Signature
string.lstrip #=> new_string
string.lstrip returns a new string with leading whitespace removed.
Examples
"\r\n\t foo bar".lstrip #=> "foo bar"
text =
Documentation Reference
- Log in to post comments
string.lstrip #=> new_string
string.lstrip returns a new string with leading whitespace removed.
"\r\n\t foo bar".lstrip #=> "foo bar"
text =