在 Visual Studio 2010 中计算供选择的非空白字符数
有谁知道 Visual Studio 2010 的工具或扩展可以计算文档中当前选择的非空白字符(例如所有字符,但不包括空格、换行符等)?
很高兴有代码高尔夫:)
我有一个命令行工具,但集成工具会非常好。我也更喜欢一些东西来评估当前的选择。
does anyone know of a tool or extension to Visual Studio 2010 to count non-whitespace (e.g. all characters but not spaces, new lines etc.) for current selection in a document?
Nice to have for code golfing :)
I have a command line tool, but an integrated tool would be very nice. Also I would prefer something to evaluate current selection.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终创建了下面这个粗略的宏,首先在 Visual Studio 中记录一个临时宏,然后将其修改为如下所示:
如果需要,可以将其绑定到键盘快捷键。否则,在宏资源管理器中双击它即可运行它。
I finally got to creating this crude macro below by first recording a temporary macro in Visual Studio and then modifying it to look like the below:
This can be bound to a keybord shortcut if desired. Otherwise, double clicking it in Macro Explorer will run it.