Skip to content

Instantly share code, notes, and snippets.

@thejavalistener
Last active December 28, 2015 21:59
Show Gist options
  • Save thejavalistener/7568825 to your computer and use it in GitHub Desktop.
Save thejavalistener/7568825 to your computer and use it in GitHub Desktop.
public static String removeLeft(String s,String toRmv)
{
return s.substring(toRmv.length()+1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment