ChatGPT解决这个技术问题 Extra ChatGPT

Find and replace - Add carriage return OR Newline

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?


O
Olivia Stork

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

https://i.stack.imgur.com/MEXXe.png

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.


using the "Play" button to the right of the Find text is handy too
and if you're trying to match special characters such as parentheses dont forget to use e.g. \) when regular expressions are on...
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.
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.
It should be noted that if "Use Regular Expressions" is selected, one can use "\n" to find (and replace) newlines as well.
h
hkutluay

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


Find: \r\n Replace: mytext\r\n Use regular expressions.
O
Olivia Stork

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 \~\~\?.


'~' doesn't need to be escaped in Regex. It's a literal character. This is incorrect.
S
Suzanne Soy

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:

Search for your original string, and replace it with "UniqueString42", with regular expressions off. Search for "UniqueString42" and replace it with "UniqueString42\nUniqueString1337", with regular expressions on Search for "UniqueString42" and replace it with the first line of your replacement (often your original string), with regular expressions off. 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:

public IFoo SomeField { get { return this.SomeField; } } → XOXOXOXO (regex off). XOXOXOXO → XOXOXOXO\nHUHUHUHU (regex on). XOXOXOXO → public IFoo Foo { get { return this.MyFoo; } } (regex off). HUHUHUHU → public IFoo Bar { get { return this.MyBar; } } (regex off).


@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.
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.
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 :-)
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.
M
Matthew Lock

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

https://i.stack.imgur.com/WO7uF.png


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.
C
Cryptc

Just a minor word of warning... a lot of environments use, or need, "\r\n" and not just "\n". I ran into an issue with Visual Studio not matching my regex string at the end of the line because I left off the "\r" of "\r\n", so my string couldn't match with a missing invisible character.

So, if you are doing a find, or a replace, consider the "\r".

For a little more detail on "\r" and "\n", see: https://stackoverflow.com/a/3451192/4427457


THANK YOU, I was going crazy trying to figure this out (Unix background).