Title |
Test
Find
Arabic+Farsi+English Cleanup
|
Expression |
^[ a - z, 0 - 9 , ? - ? ,? - ? , ? - ? ,? - ? , . ] |
Description |
good for cleanup none (farsi+arabic+english)letters |
Matches |
[a-z ا-ي ]+some special characters |
Non-Matches |
%$#*&^!+_-=><... |
Author |
Rating:
Not yet rated.
Qasem h nobari
|
Source |
|
Your Rating |
|
Title: Need help for arabic regex in swift
Name: Chandan Jee
Date: 7/18/2020 2:06:26 PM
Comment:
I want to create regex for password using arabic text, number and special character. also want to create regex for email id validate in arabic.
let passwordRegex = "^(?=.*[\\p{L}&&[\\p{script=Arabic}A-Za-z]])(?=.*[\\p{N}&&[\\p{script=Arabic}0-9]])(?=.*[\\p{N}&&[\\p{script=Arabic}#?!@$%^&*-]])[\\p{L}\\p{N}&&[\\p{script=Arabic}a-zA-Z0-9#?!@$%^&*-]]{8,}$"
let emailRegex = "[ء-ي٠-٩._%+-]+@[ء-ي٠-٩.-]+\\.[ء-ي]{2,}"
let emailRegex = "^(\\p{L}\\p{N}[.|-]?)*\\p{L}\\p{N}+[@](\\p{L}\\p{N}[.]?)*\\p{L}\\p{N}+[.][ء-ي]{2,4}$"
Title: Need help for arabic regex in swift
Name: Chandan Jee
Date: 7/18/2020 2:06:13 PM
Comment:
I want to create regex for password using arabic text, number and special character. also want to create regex for email id validate in arabic.
let passwordRegex = "^(?=.*[\\p{L}&&[\\p{script=Arabic}A-Za-z]])(?=.*[\\p{N}&&[\\p{script=Arabic}0-9]])(?=.*[\\p{N}&&[\\p{script=Arabic}#?!@$%^&*-]])[\\p{L}\\p{N}&&[\\p{script=Arabic}a-zA-Z0-9#?!@$%^&*-]]{8,}$"
let emailRegex = "[ء-ي٠-٩._%+-]+@[ء-ي٠-٩.-]+\\.[ء-ي]{2,}"
let emailRegex = "^(\\p{L}\\p{N}[.|-]?)*\\p{L}\\p{N}+[@](\\p{L}\\p{N}[.]?)*\\p{L}\\p{N}+[.][ء-ي]{2,4}$"
Title: can you please help me for creating email id regex and password regex
Name: Chanda
Date: 7/18/2020 1:57:07 PM
Comment:
I want to create regex for password using arabic text, number and special character. also want to create regex for email id validate in arabic.