最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

regex - How to check if a string has any non ISO-8859-1 characters with Javascript? - Stack Overflow

programmeradmin5浏览0评论

I want to write a string validator (or regex) for ISO-8859-1 characters in Javascript.

If a string has any non ISO-8859-1 character, then validator must return false otherwise true. E.g:

str = "abcÂÃ";
validator(str); // should return true;

str = "a 你 好";
validator(str); // should return false;

str ="你 好";
validator(str); // should return false;

I have tried to use the following regex but it's not working perfectly.

var regex = /^[\u0000-\u00ff]+/g;
var res = regex.test(value);

I want to write a string validator (or regex) for ISO-8859-1 characters in Javascript.

If a string has any non ISO-8859-1 character, then validator must return false otherwise true. E.g:

str = "abcÂÃ";
validator(str); // should return true;

str = "a 你 好";
validator(str); // should return false;

str ="你 好";
validator(str); // should return false;

I have tried to use the following regex but it's not working perfectly.

var regex = /^[\u0000-\u00ff]+/g;
var res = regex.test(value);
Share Improve this question edited Sep 29, 2015 at 18:11 Buzinas 11.7k2 gold badges38 silver badges59 bronze badges asked Sep 29, 2015 at 18:06 abhishekdabhishekd 1331 gold badge2 silver badges5 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

Since you want to return false if any non-ISO-8859-1 character is present, you could use double-negate:

var str = "abcÂÃ";
console.log(validator(str)); // should return true;

str = "a 你 好";
console.log(validator(str)); // should return false;

str = "你 好";
console.log(validator(str)); // should return false;

str = "abc";
console.log(validator(str)); // should return true;

str = "╗";
console.log(validator(str)); // should return false;

function validator(str) {
  return !/[^\u0000-\u00ff]/g.test(str);
}

It uses !/[^\u0000-\u00ff]/g.test(str), since it checks if there is any non-character, and if it has not, it returns true, otherwise, it returns false.

Just in case you want to have an alternative way

发布评论

评论列表(0)

  1. 暂无评论