作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好吧,基本上,我有一个这样的声明;
$scope.promotion = "((A|B)|(C|D)) & (E | ((F|G) & (H|I))) & (J | K)";
是否可以根据括号分隔该字符串?这样我就能得到返回;
$scope.promo1 = "(A|B)";
$scope.promo2 = "(C|D)";
$scope.promo3 = "((A|B) | (C|D))";
类似这样的事情。
最佳答案
所以经过一番研究后,我想说这是如何基于数学逻辑分解字符串的一种解决方案。
$scope.array1 = [];
$scope.array2 = [];
var txt1 = "((A|B)|(C|D)) & (E | ((F|G) & (H|I))) & (J | K)";
for(var i=0; i < txt1.length; i++){
if(txt1.charAt(i) === '('){
$scope.array1.push(i);
}
if(txt1.charAt(i) === ')'){
$scope.array2.push(txt1.substring($scope.array1.pop()+1,i));
}
}
因此, array2 会返回类似的内容;[“A | B”,“C | D”]等等。
关于javascript - 根据javascript/angularjs中的括号解析AND和OR条件语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41540835/
我是一名优秀的程序员,十分优秀!