method
    
    lstrip!
 
  lstrip!()
  public
  Removes leading whitespace from str, returning nil if no change was made. See also String#rstrip! and String#strip!.
" hello ".lstrip #=> "hello " "hello".lstrip! #=> nil
 
  lstrip!()
  public
  Removes leading whitespace from str, returning nil if no change was made. See also String#rstrip! and String#strip!.
" hello ".lstrip #=> "hello " "hello".lstrip! #=> nil