11问答网
所有问题
js怎么判断字符串是不是以time或者Time开头的,还有判断结尾是不是 _long,_int,__float
如题所述
举报该问题
其他回答
第1个回答 2016-11-15
这种最好用正则表达式来做。。
/^time|^Time|_long$|_int$|_float$/.test(你的字符串)
举例:
var t1 = "1234_int";
var p = /_int$/;
alert(11);
alert(p.test(t1));//true
本回答被网友采纳
第2个回答 2016-11-15
.startWith()
.endWith()
追问
怎么判断字符串带不带 time,不管什么位置
追答
str.contains(substr)
本回答被提问者采纳
相似回答
大家正在搜