以下是代码:
private static String VALID_INPUT_STRING = "((\\A[1-9]{1}[0-9]{0,4}\\z)|(\\A[1-9][0-9]{0,2}\\.[0-9]\\z)|(\\A0\\.[1-9]\\z))";
public boolean isValidInput(String input) {
if(
input.isEmpty() || input.matches(VALID_INPUT_STRING)
) {
return true;
}
return false;
}
if (e.getNativeKeyCode() == KeyCodes.KEY_ENTER
&& isValidInput(inputValue.getText())) {
hideInsertPopUp();
}
任何想法?非常感谢你。
答案 0 :(得分:1)
我明白了。 我使用 String.matches 客户端。实际上GWT使用com.google.gwt.regexp.shared.RegExp。
com.google.gwt.regexp.shared.RegExp 不支持 \ A 和 \ z ,所以我用<替换了< strong> ^ 和 $ 。这对我来说很好。