Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

4 Answers

up vote 51 down vote accepted

Make sure "Use: Regular expressions" is selected in the Find and Replace dialog:

Find/Replace Dialog Use Regular expressions

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".

share|improve this answer
Perfect...just what I was looking for.. Great stuff :).Thanks – Mantisimo Dec 2 '10 at 18:10
4  
using the "Play" button to the right of the Find text is handy too – Cel Jan 5 '12 at 13:43
1  
and if you're trying to match special characters such as parentheses dont forget to use e.g. \) when regular expressions are on... – Cel Jan 5 '12 at 13:44
Thanks! This saved me a LOT of time – Losbear Jun 11 '12 at 13:24

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).

share|improve this answer
Brilliant thanks, this works! :) – Mantisimo Dec 2 '10 at 18:11
I was looking for \r and loosing my mind. thanks! Silly looking back at it though... – John Sep 21 '11 at 17:34

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

share|improve this answer

You can use Multiline Search and Replace in Visual Studio macro which provides nice GUI for the task.

share|improve this answer
Cool, this could come in use in future. Thanks – Mantisimo Dec 2 '10 at 18:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.