Skip to content

Commit

Permalink
Validation: match all ASCII characters (allowed in oracle for quoted …
Browse files Browse the repository at this point in the history
…identifiers) (#76)
  • Loading branch information
Vitalii4as authored Jan 3, 2024
1 parent 194ccb4 commit 7a21c14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validation/validationRegularExpressions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"code": "^[A-Za-z_0-9$#]{0,128}$"
"code": "^[ -~]{0,128}$" // match all ASCII characters
}

0 comments on commit 7a21c14

Please sign in to comment.