Most of the following content comes from the network.
() The content in the brackets is added by myself.
Ultraedit is a daily tool. however, the functions actually used are only a very small part of the powerful functions of this tool. flexible use of this tool can sometimes achieve twice the result with half the effort. record and collect tips to help others.
1: How do I remove the lines in the edited text that contain a specific string?
This technique is mentioned in the Help File of ultraedit.
CTRL + R call out the Replace window, select "use regular expression", and then replace % * your string * ^ P with null content. for example, if I have a text file, I need to remove all rows containing the http://www.dbanotes.net/string and replace % * http://www.dbanotes.net/##p with null. note that ^ P is a line break of the DOS file type. for UNIX files, use ^ n.
2: how to add specific characters such as commas (,) at the end of a row?
With the above experience (in fact, I learned from my colleagues for the first time), press Ctrl + R to call out the Replace window and select "use regular expression ". then you can find ^ P (or ^ N, if it is a UNIX file) and use, ^ P (or, ^ N) to "replace all. in addition, if it is a MAC (Apple) file, the line break is ^ r.
3: How do I delete empty rows?
Refer to the above two examples, find ^ p $ and replace it with null.
4: How do I add a timestamp to the edit file?
You can try the F7 shortcut?
5: Why is the copy/paste function unavailable?
I have used ultraedit several times and found that the content copied from other articles and pasted it into UE is different, whether it is Ctrl + C or, right-click and choose copy from the drop-down list.
However, copying and pasting in the UE is what you really want. I have encountered this before, but I don't care if I think there are few words.
The problem was found this time: ultraedit has 10 clipboard boards (Clipboard) and uses Ctrl + 0-Ctrl + 9 to switch between them.
CTRL + 0 is windows, and others are customized. You may not know when to press Ctrl + N, and the result content will be wrong.
It is easy to solve the problem. Press Ctrl + 0. Open 'edit'-'clipboard 'to view the UE clipboard settings. Select the Windows clipboard.
6: Is there latency even when opening small files?
Each time a file is opened, there is always a delay of several seconds.
Open "advanced"-> "Settings"-> "Editor"-> "advanced" to see if "load/restore printer settings" is selected "? If yes, remove
(The location may vary depending on the version or Chinese version ).
7. Delete the content of the current row.
CTRL + E
8: The content is automatically wrapped with the edit window
'Edit'-'Switch to automatic newline '. The toolbar also has the 'Switch newline' button.
(If you despise yourself, it's not too short to use UE. I didn't even pay attention to this button !! Study ue more)