We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/(\.[\u4e00-\u9fa5A-Z])+/i.test('a.c'); //true /(\.[A-Z\u4e00-\u9fa5])+/i.test('a.c'); //true
/(\.[\u4e00-\u9fa5A-Z])+/i.test('a.c'); //false /(\.[A-Z\u4e00-\u9fa5])+/i.test('a.c'); //true
why?