Browse Source

Merge pull request #1107 from serkanince/patch-1

Update readmeRegex.md
Robin Herbots 10 years ago
parent
commit
5933a6e539
1 changed files with 7 additions and 0 deletions
  1. 7 0
      README_regex.md

+ 7 - 0
README_regex.md

@@ -8,3 +8,10 @@ $(document).ready(function(){
    $(selector).inputmask('Regex', { regex: "[a-zA-Z0-9._%-]+@[a-zA-Z0-9-]+\\.[a-zA-Z]{2,4}" });
 });
 ```
+Example turkish words regex (utf8):
+
+```javascript
+$(document).ready(function(){
+   $(selector).inputmask('Regex', { regex: "[a-zA-Z-9şŞıİçÇöÖüÜĞğ\-]+" });
+});
+```