Languages
[Edit]
EN

JavaScript - check if character is letter

18 points
Created by:
Root-ssh
178290

In this short article, we would like to show how to check if the character is a letter using JavaScript.

Hint: in the below example you will find a solution that has support for i18n for many alphabets.

It is like \w regular expression group with i18n characters.

Quick solutions:

 or:

 

Important things:

  1. by default, only modern JavaScript (ES6+) introduces some solutions to check if some character is a letter,
  2. if ES6+ is not supported, it is possible to use case conversion to make some letter detection - it doesn't work in all cases but can be enough,
  3. the third option is to use an external library: XRegExp or unicode-properties (with getCategory()) - but it increases bundle size, what not accepted on some websites.

Reusable function example

Edit

In this section, you will find a function that gives good enough support for many letters detection.

 

Alternative titles

  1. JavaScript - isLetter function
  2. JavaScript - check if character is letter with i18n
1
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join