I would like to have a regular expression that matches:
1.Arabic letters.
2.English letters.
3.Allow space.
4.min 2-max 30.
then i wrotre this regex:
^(?:[a-zA-Z\s\u0600-\u06FF\u0750-\u077F\u08A0-\u08FF\uFB50-\uFDCF\uFDF0-\uFDFF\uFE70-\uFEFF]|(?:\uD802[\uDE60-\uDE9F]|\uD83B[\uDE00-\uDEFF])[ ]{0,1}){2,30}$
but its not good