Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know I can validate against string with words ( 0-9 A-Z a-z and underscore ) by applying W in regex like this:

function isValid(str) { return /^\w+$/.test(str); }

But how do I check whether the string contains ASCII characters only? ( I think I'm close, but what did I miss? )

Reference: http://stackoverflow.com/a/8253200/188331

UPDATE : Standard character set is enough for my case.

share|improve this question
What's wrong with current solution? – zerkms Jan 14 at 4:00
Standard or extended character set? – zzzzBov Jan 14 at 4:01
I want ASCII symbols such as parenthesis , hyphen , question marks , fullstop to be included. – Shivan Raptor Jan 14 at 4:01
standard character set is enough for this case. – Shivan Raptor Jan 14 at 4:02
possible duplicate of Regex any ascii character – sachleen Jan 14 at 4:02
show 3 more comments

2 Answers

up vote 6 down vote accepted

All you need to do it test that the characters are in the right character range.

function isASCII(str) {
    return /^[\x00-\x7F]*$/.test(str);
}

Or if you want to possibly use the extended ASCII character set:

function isASCII(str, extended) {
    return (extended ? /^[\x00-\xFF]*$/ : /^[\x00-\x7F]*$/).test(str);
}
share|improve this answer
You've missed + – zerkms Jan 14 at 4:04
1  
@zerkms, between the two of us we'll get there. For now I'll assume * as a string of '' is technically ASCII. – zzzzBov Jan 14 at 4:05
I'm not insisting on + instead of *. When I posted my comment there were none of them. – zerkms Jan 14 at 4:07
+1 The best answer, for sure – Mark Linus Jan 14 at 4:16

You don't need a RegEx to do it, just check if all characters in that string have a char code between 0 and 127:

function isValid(str){
    if(typeof(str)!=='string'){
        return false;
    }
    for(var i=0;i<str.length;i++){
        if(str.charCodeAt(i)>127){
            return false;
        }
    }
    return true;
}
share|improve this answer
3  
"You don't need a RegEx to do it" --- why not use regex - it will be a trivial one liner – zerkms Jan 14 at 4:04
If he wants "ASCII only" I guess it's >127, not >255 – ThiefMaster Jan 14 at 4:04
@ThiefMaster that's right, I've updated the answer – Mark Linus Jan 14 at 4:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.