我们可以在Xcode中使用UltraEdit删除很多列吗?
为了删除下面的“ 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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 asempty
.2) You can simply press
option/alt
key while you select the columns in Xcode and press thedelete
button. Pressing the option/alt key while selecting text lets you select the texts as columns.如果我正确理解你的问题,只需使用字符串
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!