我想使用正则表达式拆分字符串,并在结果数组中包含分隔符/匹配信息。
在java中我用过:
theString.split("(?<=[!><=}{])|(?=[!><=}{])|(?<= AND )|(?= AND )|(?<= OR )|(?= OR )")
但是,javascript不支持lookbehind ?<=
例如我想要字符串:
"Reason={Existing problem or fault}{Bestaande probleem of vout}{Other}{Ander} and Required!=No and Results >=10 and Results <=25 and Tst>5 and Tst<80 and Info=test this or that and those and Success!=Yes"
分裂:
Reason,=,{,Existing problem, or ,fault,},{,Bestaande probleem of vout,},{,Other,},{,Ander,}, and ,Required,!,=,No, and ,Results,>,=,10, and ,Results,<,=,25, and ,Tst,>,5, and ,Tst,<,80, and ,Info,=,test this, or ,that, and ,those, and ,Success,!,=,Yes
我得到的例子:
var thestr = "Reason={Existing problem or fault}{Bestaande probleem of vout}{Other}{Ander} and Required!=No and Results >=10 and Results <=25 and Tst>5 and Tst<80 and Info=test this or that and those and Success!=Yes";
document.write("::SPLIT::<br>");
var patt1=new RegExp(/([!><=}{])|( AND )|( OR ) /gi);
var x = thestr.split(patt1);
//This splits correctly but, doesn't include the separators / matched characters
document.write("length="+x.length+"<br>");
for (c=0;c<x.length;c++) {
document.write(c+" - "+ x[c]+" |");
}
document.write("<br><br>::MATCH::<br>");
var y = thestr.match(patt1);
//This shows the matched characters but, how do I combine info from split and match
document.write("length="+y.length+"<br>");
for (d=0;d<y.length;d++) {
document.write(d+" - "+ y[d]+" |");
}
document.write("<br><br>::INCLUDE SEPERATORS::<br>");
var patt2=new RegExp(/(?![!><=}{])|(?=[!><=}{])|(?! AND )|(?= AND )|(?! OR )|(?= OR ) /gi);
//This puts everything in the array, but, each character is a seperate array element.
// Not what I wanted to achieve.
var bits = thestr.split(patt2);
document.write("length="+bits.length+"<br>");
for (r=0;r<bits.length;r++) {
document.write(r+" - "+ bits[r]+" |");
}
答案 0 :(得分:5)
如果将整个模式放在一个组中,您还将获得分隔符:
thestr.split(/([!><=}{]| (?:AND|OR) )/)
返回如下数组:
["Reason", "=", "", "{", "Existing problem or fault", "}", "", "{", "Bestaande probleem of vout", "}", "", "{", "Other", "}", "", "{", "Ander", "}", " and Required", "!", "", "=", "No and Results ", ">", "", "=", "10 and Results ", "<", "", "=", "25 and Tst", ">", "5 and Tst", "<", "80 and Info", "=", "test this or that and those and Success", "!", "", "=", "Yes"]
然后你只需要过滤空字符串就可以了:
thestr.split(/([!><=}{]| (?:AND|OR) )/).filter(Boolean)
编辑由于Internet Explorer和其他浏览器可能没有将分组的分隔符放入结果数组中,您可以这样做:
var matches = thestr.split(/(?:[!><=}{]| (?:AND|OR) )/),
separators = thestr.match(/(?:[!><=}{]| (?:AND|OR) )/g);
for (var i=0; i<separators.length; ++i) {
matches[i+1] = separators[i];
}
这基本上将分隔符与其他部分分开,然后将两者结合起来。
答案 1 :(得分:2)
对于你的查询结构没有太深入,我建议你使用replace
方法将一个函数作为替换函数,将这些术语收集到一个数组中:
function parse(sQuery) {
var aParsed = [];
var oReTerms = /.../gim;
sQuery.replace(oReTerms, function($0, $1, $2, ...) {
//...
if ($1) {
aParsed.append($1);
}
if ($2) {
aParsed.append($2);
}
//...
return $0; // return what was matched (or any string)
});
return aParsed;
}
我以前做过这个来解析HTML标签和属性。我希望这个想法很清楚。您只需要定义正则表达式,使其与查询中的所有术语匹配。
对于特定情况,您可以在替换功能中进行另一次替换。
答案 2 :(得分:1)
如果正则表达式拆分包含捕获组,我不确定JavaScript的行为方式。我知道在Python中,如果将分裂分隔符包含在捕获括号中,则分割分隔符将成为匹配的一部分。
尝试
result = subject.split(/( or )|( and )|([^\w\s])\b|(?=[^\w\s])/i);
看看会发生什么。
答案 3 :(得分:1)
function split2(str, re) {
if (re.global) {
// Reset to start of string
re.lastIndex = 0;
}
var result = [];
var match = re.exec(str);
var lastEnd = 0;
while (match != null) {
if (match.index > lastEnd) {
result.push(str.substring(lastEnd, match.index));
}
result.push(match[0]);
lastEnd = match.index + match[0].length;
match = re.exec(str);
}
result.push(str.substring(lastEnd));
return result;
}
var thestr = "Reason={Existing problem or fault}{Bestaande probleem of vout}{Other}{Ander} and Required!=No and Results >=10 and Results <=25 and Tst>5 and Tst<80 and Info=test this or that and those and Success!=Yes";
var patt = /[!><=}{]| AND | OR /gi;
split2(thestr,patt):
输出:
["Reason", "=", "{", "Existing problem", " or ", "fault", "}", "{",
"Bestaande probleem of vout", "}", "{", "Other", "}", "{", "Ander", "}", " and ",
"Required", "!", "=", "No", " and ", "Results ", ">", "=", "10", " and ",
"Results ", "<", "=", "25", " and ", "Tst", ">", "5", " and ", "Tst", "<", "80",
" and ", "Info", "=", "test this", " or ", "that", " and ", "those", " and ",
"Success", "!", "=", "Yes"]
答案 4 :(得分:1)
上面的Gumbo拆分功能是一个好主意,但它不起作用。它应该是:
function split(str, regex) {
var matches = str.split(regex),
separators = str.match(regex),
ret = [ matches[0] ];
if (!separators) return ret;
for (var i = 0; i < separators.length; ++i) {
ret[2 * i + 1] = separators[i];
ret[2 * i + 2] = matches[i + 1];
}
return ret;
}
split('a,b,c', /,/g); // returns ["a", ",", "b", ",", "c"]
答案 5 :(得分:0)
要支持大多数正在使用的浏览器,您可以匹配您的字符串
此模式匹配除分隔符之外的任意数量的字符,&lt;&gt;!{} =, 或其中一个分隔符。
var rx=/([^<>!{}=]+|[<>!{}=])/g
var str='Reason={Existing problem or fault}{Bestaande probleem of vout}'+
'{Other}{Ander} and Required!=No and Results >=10 and Results <=25 '+
'and Tst>5 and Tst<80 and Info=test this or that and those and Success!=Yes';
str.match(rx).join('\n')
//returned value:
Reason
=
{
Existing problem or fault
}
{
Bestaande probleem of vout
}
{
Other
}
{
Ander
}
and Required
!
=
No and Results
>
=
10 and Results
<
=
25 and Tst
>
5 and Tst
<
80 and Info
=
test this or that and those and Success
!
=
Yes
//我连接了字符串并加入了结果以便于阅读