Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个简单的 Java 正则表达式来查看给定的字符串是否包含以下模式:
DigitOperandDigit
数字是从 0 到 9 的数字,操作数是 中的任何一个+-/*。
+-/*
例子:
1+1 2/4
这个表达式应该有效:
\d[*/+-]\d
并在使用中:
if (string.matches("\d[*/+-]\d")) { // ... }