Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Paul http://stuff-on-fire.blogspot.com/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Match UTF-8 characters

var string = 'abcde ąbćdę';

// this wont find anythin
string.match( /^[a-z]*$/i );

// and this one will work fine :)
string.match( /^[a-z\u00A1-\uFFFF]*$/i );
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS