我们可以在Xcode中使用UltraEdit删除很多列吗?

发布于 2024-12-05 04:04:10 字数 262 浏览 2 评论 0原文

为了删除下面的“ NSString *”,

NSString * todayDate;
NSString * conditionStatus;
NSString * ftemp;
NSString * ctemp;
NSString * imageUrl;

使其像下面这样一次

 todayDate;
 conditionStatus;
 ftemp;
 ctemp;
 imageUrl;

in order to delete the follow " NSString *"

NSString * todayDate;
NSString * conditionStatus;
NSString * ftemp;
NSString * ctemp;
NSString * imageUrl;

make it like below once

 todayDate;
 conditionStatus;
 ftemp;
 ctemp;
 imageUrl;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

勿忘初心 2024-12-12 04:04:10

1) 你可以做一个简单的Find &将替换为 NSString * 的查找字符串,并将替换字符串保留为

2) 您只需在Xcode中选择时按option/alt键,然后按delete按钮。选择文本时按 option/alt 键可以选择文本作为列。

1) You can do a simple Find & Replace with find string as NSString * and leaving the replace string as empty.

2) You can simply press option/alt key while you select the columns in Xcode and press the delete button. Pressing the option/alt key while selecting text lets you select the texts as columns.

忆伤 2024-12-12 04:04:10

如果我正确理解你的问题,只需使用字符串 NSString * 和一个空格进行查找并替换(command + f)即可完成工作。希望有帮助!

If I understand your question correctly, just do a find and replace (command + f) with the string NSString *, and a blank space, and that will get the job done. Hope that Helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文