Skip to content

Commit

Permalink
metadata attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhitocode committed Jan 3, 2025
1 parent 78f9734 commit 9f41ad6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
public class StringUtils {

public static final String ALPHA_NUM_REGEXP = "^[a-zA-Z0-9\\-\\_]*$";
public static final String ALPHA_NUM_UNDERSCORE_DOT_REGEXP = "^[a-zA-Z0-9\\-\\_\\.]*$";
public static final String ALPHA_NUM_HYPHEN_UNDERSCORE_DOT_REGEXP = "^[a-zA-Z0-9\\-\\_\\.]*$";
public static final String ALPHA_NUM_UNDERSCORE_DOT_GT_LT_REGEXP = "^[a-zA-Z0-9<>,\\_\\.]*$";
public static final String ALPHA_NUM_SPACE_REGEXP = "^[a-zA-Z0-9\\-\\_\\ ]*$";
public static final RegExp EXPRESSION = RegExp.compile(Patterns.EXPRESSION);
Expand Down

0 comments on commit 9f41ad6

Please sign in to comment.