正则表达式-计算器
Posted 777
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则表达式-计算器相关的知识,希望对你有一定的参考价值。
利用正则表达式计算下面值:
1 - 2 * ( (60 - 30 + (-40.0/5) * (9 - 2 * 5/3 + 7 / 3 * 10/4*2 +10 *5/14)) -(-4*3)/(16-3*2))
import re def wipe(s): #定义去除重复+-号函数 res=s.replace("+-","-").replace("++","+").replace("--","+").replace("-+","-") return res def add_num(s):#定义加减法运算函数 # s.replace("+-", "-").replace("++", "+").replace("--", "+").replace("-+", "-") wipe(s) while True: res = re.split("([+-]?\d+\.?\d*[\+-][+-]?\d+\.?\d*)", s) if len(res) == 3 and "+" in res[1]: a, b = res[1].split("+") res_s = float(a)+float(b) res[1] = res_s re.sub("([+-]?\d+\.?\d*[\+-][+-]?\d+\.?\d*)", str(res), s) elif len(res) == 3 and "-" in res[1]: a, b = res[1].split("-") res_s = float(a)-float(b) res[1] = res_s re.sub("([+-]?\d+\.?\d*[\+-][+-]?\d+\.?\d*)", str(res), s) def mul(s):#定义乘除法运算 while True: wipe(s) res=re.split("([+-]?\d+\.?\d*[\*/][+-]?\d+\.?\d*)", s) if len(res)==3 and "*"in res[1]: a,b=res[1].split("*") res_s=float(a)*float(b) res[1]=res_s re.sub("([+-]?\d+\.?\d*[\*/][+-]?\d+\.?\d*)",str(res),s) elif len(res)==3 and "/"in res[1]: a,b=res[1].split("/") res_s=float(a)/float(b) res[1]=res_s re.sub("([+-]?\d+\.?\d*[\*/][+-]?\d+\.?\d*)",str(res),s) def get(s):#定义取括号内运算式函数 res=re.sub(" ","",s) res1=re.search("\([^()]+\)",res).group() res2=res1.strip("()") return res2
以上是关于正则表达式-计算器的主要内容,如果未能解决你的问题,请参考以下文章
正则表达式匹配特定的 URL 片段而不是所有其他 URL 可能性