/    Sign up×
Community /Pin to ProfileBookmark

String validation

I’m doing some string checks for a form validation. Now i have to make sure a certain field is 13 digits long, only digits and it can only be 13 characters. This is the code I use for it:

[code=html] [‘validate-phone’, ‘Please use a phonenumber including country code, for example: 0031642391466’, function(v) {
return Validation.get(‘IsEmpty’).test(v) || !/[^d]/.test(v);
}],[/code]

It works to get only digits, but I haven’t figured out how to check for the length of the string yet. I have tried a lot of things but I can’t seem to get it to work. How do I build in this check?

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@forty2Apr 12.2007 — ^d{13}$
Copy linkTweet thisAlerts:
@vijirubaApr 12.2007 — Very simple

Use string.length to check for the length of the string

[CODE]
var num = "024242444444";
numLength = num.length();
[/CODE]
×

Success!

Help @wimmulder spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...