Regular Expressions 101

Community Patterns

At least one uppercase and one lowercase Russian word with no digits nor spaces, nor special characters

0

Regular Expression
ECMAScript (JavaScript)

/
^(?=.*[а-я])(?=.*[А-Я])[а-яА-Я]+$
/
gm

Description

A regular expression that matches conditions mentioned in above title

Submitted by Kenya-West - a year ago