Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个完整的数据列表,我需要用这些数据替换一些数据。
每行都以:
<select value="12345">
(每行 12345 不同)
我想将其替换为:
@"
我该怎么做,我可以找到正确的查找和替换算法来做到这一点?这真的可以节省我几个小时。
您想在 Xcode 项目中对源代码进行此更改吗?或者您想使用 Xcode 编写一个程序来执行此操作?
假设它是前者,那么您可以执行 Edit -> Find in Project,选择“Regular Expression”,然后查找字符串将是:
<select value="([0-9]+)">
替换字符串将是:
<select value=@"\1">