In the case of following string to be parsed.
ford mustange,10,blue~~?bugatti veyron,13,black
I want to replace the ~~? with a carriage return
Replacing with \n just adds the string "\n"
I'm sure this can be done?
Thanks
|
In the case of following string to be parsed.
I want to replace the ~~? with a carriage return Replacing with \n just adds the string "\n" I'm sure this can be done? Thanks |
||||
|
|
|
Make sure "Use: Regular expressions" is selected in the Find and Replace dialog:
Note that this doesn't work in the Visual Studio Productivity Power Tools' "Quick Find" extension (as of the July 2011 update); instead, you'll need to use the full Find and Replace dialog (use Ctrl+Shift+H, or Edit --> Find and Replace --> Replace in Files), and change the scope to "Current Document". |
|||||||||||||
|
|
If you set "Use regular expressions" flag then \n would be translated. But keep in mind that you would have to modify you search term to be regexp friendly. In your case it should be escaped like this "\~\~\?" (no quotes). |
|||
|
You can also try \x0d\x0a in the "Replace with" box with "Use regulare Expression" box checked to get carriage return + line feed using Visual Studio Find/Replace. Using \n (line feed) is the same as \x0a |
|||
|
|
|
You can use Multiline Search and Replace in Visual Studio macro which provides nice GUI for the task. |
|||
|
|