2014-01-07 47 views
0

可以說我有以下字符串:提取從Javascript中的子串開始的部分的函數?

var myString = "hello and welcome to my website"; 

是否有任何的Javascript功能來提取特定字符串的開始部分?

對於爲例:

var newString = extractString(myString, "welcome"); 

而且newString"welcome to my website"

回答

4

在這裏你去

> myString = "hello and welcome to my website" 
"hello and welcome to my website" 
> part = myString.substr(myString.indexOf("welcome")) 
"welcome to my website" 

注意,這個假設子在那裏,如果這可能不是的情況下,添加一個檢查:

var i = myString.indexOf(search) 
if(i >= 0) 
    ...ok 
相關問題