Add in a few more characters allowed in a Rabi-Ribi session name.

This commit is contained in:
sigonasr2 2017-11-18 01:39:27 -06:00
parent 340e46ac37
commit 643be89570
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -28,7 +28,7 @@ public class TextUtils {
} }
public static boolean isAlphanumeric(String str) { public static boolean isAlphanumeric(String str) {
return str.matches("^[a-zA-Z0-9!\\-.? ]+$"); return str.matches("^[a-zA-Z0-9!\\-.?'\": ]+$");
} }
public static boolean isNumeric(String str) public static boolean isNumeric(String str)