是否可以在 Visual Studio 中替换为大写?
是否可以在 Visual Studio 中使用“查找和替换”对话框和 RegEx (?) 替换为大写字母:。 =>上层(.)
?
说我有:
m_<b>a</b>blabla
我想要:
_<b>A</b>blabla
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 Visual Studio 临时宏来解决此问题。这是一个非常强大、灵活的功能,我一直使用它来执行重复的代码操作。
我假设您在这里使用 C# 默认键绑定。
You can solve this by using Visual Studio temporary macros. This is a very powerful, flexible feature which I use all the time for performing repetitive code manipulations.
I'm assuming you're using the C# default key bindings here.
<m_:Ll
" - words that begin with m, underscore, then a lower case letter;如果您使用 Visual Studio Code(而不是 Visual Studio),则可以使用修饰符:\u\U\l\L
m_ablabla
m_(.*)
m_\U$1
替换后的示例文本:m_blabla
注意:这仅在 Visual Studio Code 1.29 及更高版本(2020 年 8 月发布)中可行。请参阅 https://code.visualstudio.com/updates/v1_49# _正则表达式替换中的大小写更改
If you use Visual Studio Code (instead of Visual Studio) you can use the modifiers: \u\U\l\L
m_<b>a</b>blabla
m_<b>(.*)</b>
m_<b>\U$1</b>
m_<b>A</b>blabla
Note: This is only possible in Visual Studio Code 1.29 and later (released August 2020). See https://code.visualstudio.com/updates/v1_49#_case-changing-in-regex-replace
不,Visual Studio 不支持这一点。有关 VS 检查中的正则表达式功能的参考:
正则表达式 (Visual Studio)
(原始答案,由于误解原始问题而给出)
假设 Visual Studio C# 默认键绑定。
您可以通过不同的方式来实现这一目标。
如果它是(变量、方法、属性等),您可以使用重命名重构来更改所有实例。在要重命名的实例上按 F2 键即可调用此重构。
如果您对定义本身进行更改,您还可以使用 SHIFT+ALT+F10 调用活动重构弹出窗口,然后进行重命名所有实例。
如果它是字符串文字,您可以使用快捷键 CTRL+U (小写)和 CTRL+SHIFT+< kbd>U(大写)快速切换所选内容的大小写。这对于编辑器中显示的所有文本都有效,但对于字符串文字最有用。
No, Visual Studio does not support that. For a reference of the regular expressions capabilities in VS check:
Regular Expressions (Visual Studio)
(Original answer, given due to misinterpreting the original question)
Assuming Visual Studio C# Default key bindings.
There are different ways you can achieve this.
If it's a (variable, method, property, etc) you can use the Rename refactoring to change all instances. This refactoring is invoked by pressing F2 key while on the instance you want to rename.
If you perform the change on the definition itself you can also use SHIFT+ALT+F10 to invoke the active refactorings popup and then do the rename all instances.
If it's a string literal you can use the shortcut CTRL+U (lowercase) and CTRL+SHIFT+U (uppercase) to rapidly switch the case of the selection. This is valid for all text shown in the editor, but most useful for string literals.