I want to create javascript Regex for checking value of textbox in range \"U+06F0 and U+06F9\" or \"0-9\" How can I build this?
Put the range inside a character class like below.
^[\u06F0-\u06F90-9]+$
+ repeats the previous token one or more times.
+