How to use regular expression for calculator input with javascript?

后端 未结 2 1572
醉梦人生
醉梦人生 2021-01-19 08:02

I am trying to write simple calculator with JavaScript. I want to check if user input is correct or not. I wrote regular expression in order to make sure user input is prope

2条回答
  •  走了就别回头了
    2021-01-19 08:51

    Your expression looks for an optional - or + followed by zero or more digits ([0-9]{0,}). I think you probably wanted one or more (+). Similarly, the ? in ([-+*/]?) makes the operator optional. You probably also want to capture the various parts.

    It is fine when I have something one operator between two operand but when I do 9+9+9 which is more then two it is not working.

    If you want to allow additional operators and digits following them, you have to allow the latter part to repeat.

    Here's my rough take:

    ^\s*([-+]?)(\d+)(?:\s*([-+*\/])\s*((?:\s[-+])?\d+)\s*)+$
    

    Live Example (But there's something not quite right happening with the capture groups if you have three or more terms.)

    Changes I made:

    1. Use \d rather than [0-9] (\d stands for "digit")

    2. Put the digits and the operators in capture groups.

    3. Don't make the digits or operator optional.

    4. Allow optional whitespace (\s*) in various places.

    5. The (?: _________ )+ is what lets the part within those parens repeat.

    6. Allow a - or + in front of the second group of digits, but only if preceded by a space after the operator.

提交回复
热议问题