1

I have a whole list of data that I need to replace some data with.

Each line starts with:

<select value="12345">

(where 12345 is different on each line)

and I want to replace it with:

@"

How do I do this, I can find the right find and replace algorithm to do this? It would really save me hours.

Zac Altman
  • 1,215
  • 4
  • 25
  • 37

1 Answers1

3

You want to do this change in your source code in an Xcode project ? Or you want to write a program using Xcode to do this ?

Assuming it's the former then you can just do Edit -> Find in Project, select "Regular Expression", then the find string would be:

<select value="([0-9]+)">

and the replacement string would be:

<select value=@"\1">
Paul R
  • 208,748
  • 37
  • 389
  • 560