Node.js之判断字符串中是否包含某个字符串

server.txt内容如下:

1
阿里云服务器

关于应用场景,就不多说了,字符串不管是前端开发人员,还是后端开发人员,都是要与其经常打交道的。

test.js(node.js代码,只要被本地装了node.js环境,直接可通过node test.js运行看效果):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
var fs = require("fs");

var result = fs.readFileSync("./server.txt");

console.log("result:"+result);

if(result.indexOf("阿里云服务器") != -1){

console.log("ok");
} else{

console.log("no");

}
//indexOf() 方法可返回某个指定的字符串值在字符串中首次出现的位置。如果要检索的字符串值没有出现,则该方法返回 -1。


if(result.toString().search("1") != -1){
console.log("ok");

}else{
console.log("no");
}
//search() 方法用于检索字符串中指定的子字符串,或检索与正则表达式相匹配的子字符串。如果没有找到任何匹配的子串,则返回 -1。



var reg = RegExp(/阿里云/);
if(result.toString().match(reg)){
console.log("ok");
}else{
console.log("no");

}
//match() 方法可在字符串内检索指定的值,或找到一个或多个正则表达式的匹配。



var reg = RegExp(/阿里云/);
if(reg.test(result)){

console.log("ok");
}else{
console.log("no");

}

//test() 方法用于检索字符串中指定的值。返回 true 或 false。



var reg = RegExp(/阿里云/);
if(reg.exec(result)){
console.log("ok");
}else{
console.log("no");
}
//exec() 方法用于检索字符串中的正则表达式的匹配。返回一个数组,其中存放匹配的结果。如果未找到匹配,则返回值为 null。

本文主要参考资料如下:
js 判断字符串中是否包含某个字符串

文章目录