Skip to main content
gave credits
Source Link
Bersan
  • 3.6k
  • 3
  • 29
  • 40

AllThe answers seemhere either do not cover all possible letters, or are incomplete.

Complete regex to match ONLY unicode LETTERS, including those made up of multiple codepoints:

^(\p{L}\p{M}*)+$ 

(based on @ZoFreX comment)

Test it here: https://regex101.com/r/Mo5qdq/1

All answers seem incomplete.

Complete regex to match ONLY unicode LETTERS, including those made up of multiple codepoints:

^(\p{L}\p{M}*)+$ 

Test it here: https://regex101.com/r/Mo5qdq/1

The answers here either do not cover all possible letters, or are incomplete.

Complete regex to match ONLY unicode LETTERS, including those made up of multiple codepoints:

^(\p{L}\p{M}*)+$ 

(based on @ZoFreX comment)

Test it here: https://regex101.com/r/Mo5qdq/1

more accurate description
Source Link
Bersan
  • 3.6k
  • 3
  • 29
  • 40

I hate when people give incompleteAll answers.. seem incomplete.

Complete regex to match ONLY unicode characters:Complete regex to match ONLY unicode LETTERS, including those made up of multiple codepoints:

^(\p{L}\p{M}*)+$ 

Test it here: https://regex101.com/r/Mo5qdq/1

I hate when people give incomplete answers...

Complete regex to match ONLY unicode characters:

^(\p{L}\p{M}*)+$ 

All answers seem incomplete.

Complete regex to match ONLY unicode LETTERS, including those made up of multiple codepoints:

^(\p{L}\p{M}*)+$ 

Test it here: https://regex101.com/r/Mo5qdq/1

Source Link
Bersan
  • 3.6k
  • 3
  • 29
  • 40

I hate when people give incomplete answers...

Complete regex to match ONLY unicode characters:

^(\p{L}\p{M}*)+$