Extended datetime property checking.
This commit is contained in:
parent
5afdd07c2b
commit
b4ef57bd7d
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ public class PropertyChecker
|
|||
{
|
||||
public static final String ALL = "^.*$";
|
||||
public static final String STRING = "^.+$";
|
||||
public static final String DATETIME = "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?";
|
||||
public static final String DATETIME = "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}(:\\d{2}([\\.,]\\d+)?)?([+-]\\d\\d:\\d\\d)?";
|
||||
public static final String DATE = "^(\\d{4}-\\d{2}-\\d{2}|\\d{2}/\\d{2}/\\d{4}|\\d{2}/\\d{4})";
|
||||
public static final String URL = "^(http(s)?://)?[\\w-_\\.]+(\\.\\w+)+(/.*)?$";
|
||||
public static final String EMAIL = "^.*@.*$";
|
||||
|
|
Loading…
Reference in a new issue