Regular Expression To Match All Greek & Latin Characters

A regular expression matches all Greek and Latin characters (with accented letters) in a string.

/^[A-Za-zΑ-Ωα-ωίϊΐόάέύϋΰήώ]+$/

Matches:

  • αβγ
  • ΑΒΓ
  • ά
  • ΦΨ
  • ABCD

Non-matches:

  • α β γ
  • Α Β Γ

See Also:

Regex Is Copied!