标签: javascript regex
有没有办法优化正则表达式? 我有这个正则表达式:
/[A-Z](.*)?[a-z]|[a-z](.*)?[A-Z]/
我希望优化它:
/([A-Z])?([a-z])?(.*)?([a-z])?([A-Z])?/
我想避免or。
or
先进的Thanx