2

我正在使用 Visual Studio 2010 中的查找和替换功能来更改字段的编码样式。

所有实例都类似于

m_MyField

应该

_myField

但我只能设法得到

_MyField

使用

Find what:      m_{[a-zA-Z]}
Replace with:   _\1

如何使第一个字母小写?我尝试了以下方法,但它不起作用:

Find what:      m_{[a-zA-Z]}
Replace with:   _\L\1

我在http://vim.wikia.com/wiki/Changing_case_with_regular_expressions中发现了这一点,但我认为它只适用于 vim。

欢迎任何建议。

4

1 回答 1

1

我会使用这种方法:

Find what:      m_A{[a-zA-Z]}
Replace with:   _a\1

对 B..Z 重复一遍

不优雅,但应该快速完成。

于 2012-11-28T09:09:07.927 回答