Find and replace - Add carriage return OR Newline

158,567

Solution 1

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

Find/Replace Dialog Use Regular expressions

Note that for Visual Studio 2010, 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.

Solution 2

You can also try \x0d\x0a in the "Replace with" box with "Use regular Expression" box checked to get carriage return + line feed using Visual Studio Find/Replace. Using \n (line feed) is the same as \x0a

Solution 3

If you set Use regular expressions flag then the \n character would be translated. But keep in mind that you would have to modify your search term to be regexp friendly. In your case it should be escaped like this \~\~\?.

Solution 4

If you want to avoid the hassle of escaping the special characters in your search and replacement string when using regular expressions, do the following steps:

  1. Search for your original string, and replace it with "UniqueString42", with regular expressions off.
  2. Search for "UniqueString42" and replace it with "UniqueString42\nUniqueString1337", with regular expressions on
  3. Search for "UniqueString42" and replace it with the first line of your replacement (often your original string), with regular expressions off.
  4. Search for "UniqueString42" and replace it with the second line of your replacement, with regular expressions off.

Note that even if you want to manually pich matches for the first search and replace, you can safely use "replace all" for the three last steps.

Example

For example, if you want to replace this:

public IFoo SomeField { get { return this.SomeField; } }

with that:

public IFoo Foo { get { return this.MyFoo; } }
public IBar Bar { get { return this.MyBar; } }

You would do the following substitutions:

  1. public IFoo SomeField { get { return this.SomeField; } }XOXOXOXO (regex off).
  2. XOXOXOXOXOXOXOXO\nHUHUHUHU (regex on).
  3. XOXOXOXOpublic IFoo Foo { get { return this.MyFoo; } } (regex off).
  4. HUHUHUHUpublic IFoo Bar { get { return this.MyBar; } } (regex off).

Solution 5

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

enter image description here

Share:
158,567

Related videos on Youtube

Mantisimo
Author by

Mantisimo

Professional Web Developer / Designer / Consultant

Updated on February 05, 2021

Comments

  • Mantisimo
    Mantisimo almost 2 years

    In the case of following string to be parsed.

    ford mustang,10,blue~~?bugatti veyron,13,black
    

    I want to replace the ~~? with a carriage return

    Replacing with \n just adds the string "\n"

    How can this be done?

  • Cel
    Cel almost 11 years
    using the "Play" button to the right of the Find text is handy too
  • Cel
    Cel almost 11 years
    and if you're trying to match special characters such as parentheses dont forget to use e.g. \) when regular expressions are on...
  • Suzanne Soy
    Suzanne Soy almost 9 years
    @Alex If you have a practical solution to this problem which avoids having to manually escape your search & replace text when transforming it to regular expressions, and spend the next 10 minutes fixing the monster created that way, I'd be very glad to hear it, since my answer is just an ugly hack. But as you can see, all other answers that work on a vanilla Visual Studio without extra plug-ins require the use of regular expressions, and thus escaping simple text.
  • Alex
    Alex almost 9 years
    I didn't mean that in a bad way. My apologies i forgot to put a smiley :D As for a solution, no i dont have one that involves VS. But I found that any decent external editor that support regex (notepad++ etc) work quite well.
  • Miros almost 9 years
    UltraEdit is the king of search replace - here you search for newlines, linebreaks or whatever simply by marking those lines and starting the search. - As for replace you simpy enter ^n for \n, ^r for \r and ^t for \t - if only VS2010 would do the same :-)
  • ErikE
    ErikE over 7 years
    '~' doesn't need to be escaped in Regex. It's a literal character. This is incorrect.
  • ErikE
    ErikE over 7 years
    The ? character needs to be escaped in Regex because it signifies that the previous element is optional. Thus, the correct "Find what" text is ~~\?, with the question mark escaped by a backslash. The answer you gave works on the sample text because it will greedily find the second tilde and consume it, however if a single tilde also exists in the text anywhere, it will improperly be replaced with a newline as well.
  • ErikE
    ErikE over 7 years
    You can always visit regex101.com to see if your search string is going to match literal characters or be interpreted as Regex control characters.
  • Neb almost 7 years
    If Productivity Power Tools is installed, you can still do ctrl+shit+h and then ctrl+h to open the native Visual Studio Find / Replace window.
  • Mark Schultheiss
    Mark Schultheiss over 5 years
    Does not seem to work with Visual Studio 2017 without some extra steps, i.e. have to click the "find in files" then modify that dialogs scope, the shortcut default is f# interactive now.
  • Jacob Lockard
    Jacob Lockard over 2 years
    It should be noted that if "Use Regular Expressions" is selected, one can use "\n" to find (and replace) newlines as well.
  • Farid Z
    Farid Z about 2 years
    Find: \r\n Replace: mytext\r\n Use regular expressions.
  • Jonathan E. Landrum
    Jonathan E. Landrum over 1 year
    THANK YOU, I was going crazy trying to figure this out (Unix background).