Closed 1mehdifaraji closed 4 months ago
Please provide a regex for bank accounts IR sheba number. The regex that I wanted to use was
IR
const shebaRegex = /{2}[0-9]{24}/
but it's invalid.
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}$/;
Please provide a regex for bank accounts
IR
sheba number. The regex that I wanted to use wasbut it's invalid.