Say, I have a string
\"hello is it me you\'re looking for\"
I want to cut part of this string out and return the new string, something like
Try the following:
var str="hello is it me you're looking for"; document.write(str.substring(3)+"");
You can check this link