Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以为我提供以下转换的正则表达式吗
abc_xyz => abcXyz mm_zzz => mmZzz
正如您可能已经猜到的那样,我想将下划线命名约定转换为 lowerCamelCase 命名约定。
我认为您只需将下划线、小写替换为大写,然后将第一个字符显式设置为小写。我已经有一段时间没有使用正则表达式了,但它就像
替换/${UNDERSCORE},${LOWERCASE}/${UPPERCASE}/全局