如果字符串长度未知,如何获取字符串的后部?
Hello World
我需要
世界。
或
Hello World天气晴朗。
我需要
weather is fine
如何拆分?
答案 0 :(得分:1)
var ws='Hello World'
var w='Hello World the weather is fine.'
var ss=w.split(ws);
for(i=0;i<ss.length;i++){
if(ss[i].length>0)
console.log(ss[i]);
}
&#13;