Node.js之判断字符串中是否包含某个字符串内容如下:
阿⾥云服务器
关于应⽤场景,就不多说了,字符串是不论是后端开发还是前端开发等,都是要经常打交道了。
test.js(node.js代码,只要被本地装了node.js环境,直接可通过node test.js运⾏看效果):
var fs = require("fs");
var result = fs.readFileSync("./");
console.log("result:"+result);
if(result.indexOf("阿⾥云服务器") != -1){
console.log("ok");
} else{
console.log("no");
}
//indexOf() ⽅法可返回某个指定的字符串值在字符串中⾸次出现的位置。如果要检索的字符串值没有出现,则该⽅法返回 -1。
String().search("1") != -1){
console.log("ok");
}else{
console.log("no");
}
//search() ⽅法⽤于检索字符串中指定的⼦字符串,或检索与正则表达式相匹配的⼦字符串。如果没有到任何匹配的⼦串,则返回 -1。
var reg = RegExp(/阿⾥云/);
String().match(reg)){javascript属于前端吗
console.log("ok");
}else{
console.log("no");
}
//match() ⽅法可在字符串内检索指定的值,或到⼀个或多个正则表达式的匹配。
var reg = RegExp(/阿⾥云/);
st(result)){
console.log("ok");
}else{
console.log("no");
}
/
/test() ⽅法⽤于检索字符串中指定的值。返回 true 或 false。
var reg = RegExp(/阿⾥云/);
(result)){
console.log("ok");
}else{
console.log("no");
}
//exec() ⽅法⽤于检索字符串中的正则表达式的匹配。返回⼀个数组,其中存放匹配的结果。如果未到匹配,则返回值为 null。
本⽂主要参考资料如下:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论