majidh1 / regex-list

Regular Expressions List
MIT License
21 stars 3 forks source link

Iranian bank accounts sheba number regex #18

Closed 1mehdifaraji closed 4 months ago

1mehdifaraji commented 4 months ago

Please provide a regex for bank accounts IR sheba number. The regex that I wanted to use was

const shebaRegex = /{2}[0-9]{24}/

but it's invalid.

majidh1 commented 4 months ago

To create a valid regex for Iranian Sheba numbers (IBAN), which have the format "IR" followed by 24 digits, you can use the following regex pattern:

const shebaRegex = /^IR[0-9]{24}$/;