正则表达式替换Javascript中的算术运算符

时间:2016-06-14 04:15:29

标签: javascript regex

我有一个包含算术运算符的字符串数组,我想用新算术运算符替换数组中的算术运算符。

例如:

var equation = '5.0 + 9.34 - 6.0 * 2.1 * 3.1 / 2.0';

var newEquation = equation.replace(/+-*//, '+');

但是,它不会改变为想要的结果。请指教。非常感谢您的贡献。

1 个答案:

答案 0 :(得分:3)

使用character class([])

var equation = '5.0 + 9.34 - 6.0 * 2.1 * 3.1 / 2.0';

var newEquation = equation.replace(/[+*\/-]/g, '+');
// or : equation.replace(/[+\-*/]/g, '+');

console.log(newEquation);

<小时/> 更新:为了避免使用负数,请使用negative look-ahead assertioncapturing group

var equation = '-5.0 + 9.34 - 6.0 * -2.1 * 3.1 / -2.0';

var newEquation = equation.replace(/(?!^-)[+*\/-](\s?-)?/g, '+$1');

console.log(newEquation);

Regex explanation here

Regular expression visualization