验证camelCase名称的正则表达式是什么?

时间:2015-08-21 08:15:13

标签: regex camelcasing

我正在实施ESLint id-match规则,我想强制执行camelCase convention

我现在提出用于验证的^[a-z]+(?:[A-Z][a-z]*)*\d*$

fooB
fooBar
fooBarBaz
foo123
fooBar123

并且不会验证:

foo123Bar
foo_bar
foo$
föö

这是一个正确的正则表达式,用于验证与camelCase约定的兼容性吗?

0 个答案:

没有答案