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

   1  
   2  var string = 'abcde ąbćdę';
   3  
   4  // this wont find anythin
   5  string.match( /^[a-z]*$/i );
   6  
   7  // and this one will work fine :)
   8  string.match( /^[a-z\u00A1-\uFFFF]*$/i );
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS