Skip to content

Instantly share code, notes, and snippets.

@xentatt
Last active December 13, 2015 18:38
Show Gist options
  • Save xentatt/4956768 to your computer and use it in GitHub Desktop.
Save xentatt/4956768 to your computer and use it in GitHub Desktop.
Remove last searched word
var data = "hello cruel super cruel world is cruel here alas"
data_result = data.substring(0, data.lastIndexOf("cruel")) + data.substring(data.lastIndexOf("cruel") + "cruel".length, data.length)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment