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 编写类似电子表格的软件。单元格可能包含数字、字符串或方程式。方程式包含单元格引用。
我需要一个 java 正则表达式来挑出单元格引用。单元格引用将是一个大写字母后跟一个数字。
我想出了:
String pattern=".[A-Z]{1}\\d";
但这仅在数字小于 10 时才有效。您能帮我找到合适的正则表达式吗?
[A-Z]{1}\d+
这将允许 1 个或多个数字