正则表达式中?=、?<=、?!、?

?=、?<=的使用举例

var str = "XXXX            (程序员)";

var newStr,regExp;

regExp = /(?<=().*(?=))/;

newStr = str.match(regExp)

console.log(newStr);//程序员

 

==============================

exp1(?=exp2):查找 exp2 前面的 exp1。

(?<=exp2)exp1:查找 exp2 后面的 exp1。

exp1(?!exp2):查找后面不是 exp2 的 exp1。

(?<!exp2)exp1:查找前面不是 exp2 的 exp1。

参考:https://www.runoob.com/regexp/regexp-syntax.html

 

上一篇:lua-循环


下一篇:Exp1.MPI集群搭建与代码编程