字符串去空返回数组
Posted tuziling
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串去空返回数组相关的知识,希望对你有一定的参考价值。
var index=item.lineName.lastIndexOf(" ");//去空格
var obj=item.lineName.substring(index+1,item.lineName.length);
console.log(obj.split(/-/),‘22222‘)
this.applicantAddress=obj.split(/-/)[0];
this.communityName=obj.split(/-/)[1];
以上是关于字符串去空返回数组的主要内容,如果未能解决你的问题,请参考以下文章