Ultraedit tips.

Source: Internet
Author: User
Tags xsl ultraedit

[Reference Source: http://blog.csdn.net/wavaya/article/details/4021522]

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. this is because I was surprised when I used the "column editing" method. I never knew this method before. this is also the purpose of writing this memo document.

 

Tip 0: no registration code. How can I use ultraedit effectively?

Many people immediately think of using the crack version, but it is illegal to investigate it. In fact, ultraedit does not completely block the path. We can use some tips to block this problem.
Modify the ultraedit shortcut and change the command line to: e:/uedit9/uedit32.exe P:, where P: Must be a non-existent sub-drive on your machine. In this way, there will be no problem about the end of the trial.

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

 

Tip 2: How do I 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.

 

Tip 3: How do I delete empty rows?

Refer to the above two examples, find ^ p $ and replace it with null.

 

Tip 4: How do I add a timestamp to the edit file?

You can try the F7 shortcut?

 

Tip 5: Why is the copy/paste function unavailable?

I have used ultraedit several times and found that the copied and pasted content does not match. somehow, I simply restarted my notebook. today, I suddenly realized that ultraedit has 10 clipboard (Clipboard) and uses Ctrl + 0-Ctrl + 9 to switch them. CTRL + 0 is windows, and others are user-defined. I mistakenly call Ctrl + N during the use process, and the result content will be faulty. have you ever met?

 

Tip 6: Is there latency even when opening a small file?

This is a problem I encountered. Every time I open a file, there will always be a few seconds of delay. My machine performance is not bad. What's wrong? Network Printer is a ghost! Open "advanced"-> "Settings"-> "Editor"-> "advanced" to see if "load/restore printer settings" is selected "? If yes, remove it (the location may vary depending on the version or Chinese version ).

 

Tip 7: Open *. EC, *. Hea file. The time code is automatically displayed with high brightness.

Menu path: Bottom of the advanced-configuration-syntax highlighting page. Select "open" to open the file C:/program files/ultraedit/wordfile.txt and modify the first line of the file, add "EC hea" after "file extensions = c cpp cc cxx h hpp awk" to save the file.

 

Tip 8: place the commonly used menu functions as shortcut buttons on the panel.

Menu path: Advanced-configuration-toolbar. Select the function menu on the left, select the position on the right, and click Insert. For example, "dos to Unix" is used to remove the enter keys under DOS, "compare Files" is used to compare files, "display rusers", "display line numbers ", the most surprising feature is the "ASCII table" feature. You don't have to go through the box every time you check the ASCII code. However, you can view the ASCII values of characters in hexadecimal mode.

 

Tip 9: column mode (shortcut: Alt + C)

This feature is powerful when you need to modify data in batches or create data. Open a file, press Alt + C, CTRL + A, and start writing. You will find that all the rows in the file are performing the same action, and a row of the same data appears. You will find a variety of wonderful usage.

 

Tip 10: Mark rows

Move to the row to be marked press Ctrl + F2, mark it; go to any other row of the file, press F2, and return to the mark. Multiple tags can be added, and F2 is circulating in each tag. F2: Next bookmark, ALT + F2: Previous bookmark.

 

Tip 11: When writing a column sign to the background program, you do not want to write a row too long. Generally, it must be smaller than 80 bytes, however, even if the ruler is displayed, it is not clear whether the row at the bottom of the screen has reached 80 bytes, unless you look at the column number of the lower status bar. At this time, this thing will take effect. Menu path: View-set column markers. You can set two column logos. First, set the first one, enter 80 in the first edit box, and then select View-show column marker 1? A vertical line is displayed at the location of 80th bytes.

 

Tip 12. Select the row to be commented out, add comment in edit-commentadd, and remove edit-comment.

 

Tip 13: Edit

You can double-click the entire word and press Ctrl + J on the keyboard. Delete the entire line Ctrl + e, delete it to the beginning of the line Ctrl + F11, delete it to the end of the line Ctrl + F12.

 

Tip 14: Don't let it always ask if you want to convert a UNIX file to a DOS file at the end

When a UNIX file is opened in version 9.0, it will always ask whether to convert it to a DOS file, which is annoying. However, it can be blocked. Advanced-configuration-general, just click auto convert UNIX files in the middle right.

 

Tip 15: open the file in the file content

If the file contains content like "C:/test.txt" or "http://www.test.com/js/test.js", you can right-click it. At the top of the pop-up menu, multiple options "C:/test.txt" or "http://www.test.com/.../test.js" are clicked to open the corresponding file.

 

CTRL + B

When writing a program, parentheses are usually matched one by one, but if there are too many nesting, what should I do? Place the cursor at the beginning of the bracket and press Ctrl + B. ue will help you find the end of the bracket. You can also try to press Ctrl + B several times.

 

F3

By default, when you press F3, the UE can find the selected content. F3 is the next conforming content, and CTRL + F3 is the previous conforming content. (check the advanced/configuration/find tag)

 

CTRL + F2

There are many lines in the program. You can remember the number of lines you want, press Ctrl + G, and enter the row number to the row. However, I think it is more convenient to use Ctrl + F2. For example, you need to switch between multiple functions frequently. You can press Ctrl + F2 at the start of the function to add a bookmark to this row. Then, click Ctrl + F2 at the start of another function. If there is a bookmarkdonet, the background color of the word will be different. When you want to switch to the next bookmarks, press F2, but what should you do with the previous tag? CTRL + F2? No, hey, you just need to add the bookmarks or cancel the bookmarks for the current row. It should be Alt + F2.

 

Simply replace it with a regular expression

Sometimes there will be some simple text processing work. For example, if you have a text on hand, you need to add a ";" to the back of all rows ";". Use search replacement to complete Ctrl + R, and replace '^ P' with' ^ P; '(remember to select regular expressions to use the regular expression function .) Then you can select replace all (Alt + a), or click Start, search and replace one by one. The advantage is that you know that all replace those, in some cases, you may not want to replace all the characters such as '{$ ABC}' with 'var abc = ABC; '. ABC may be another character Ctrl + R, replace '{^ $ ^ (* ^)}' with 'var
^ 1 = ^ 1; '(remember to select regular expressions to use the regular expression function .) Then you can select replace all (Alt + a), or click Start to find and replace them one by one.

 

Custom shortcuts

Many functions of UE have shortcut keys, but not all. 11.00 has a text2html function. I encountered such operations on a large number of codes in my work. I just want to set a shortcut. Advanced/configuration/key mapping find the command you want in commands. I am htmlconvertspecialchars here, and then click the input box under the pres s new key to set a shortcut key that feels nice and does not conflict with each other. For example, CTRL + ALT + S. then click OK. Using common functions will multiply the efficiency.

 

Calculate the sum of the numbers in the selected area

For example, the following text

2

23a1

4 1.1

56

Select first, and then column/(sum column/selection). ue splits the number by space and letters to tell you a total number.

 

Column editing function of UE

First, ALT + C is required to enter the column editing mode. After entering, you can use the mouse to select a Square area. Delete, copy all you like. If you want to add a 'test' to the second character of each row, position the cursor to the first row and the second column in column editing mode. Column/(insert/fill column), you can also use this function to insert rows. The copy and paste operations in the column editing status are very interesting and can achieve unexpected results in some cases.

 

UE comparison

UE has a built-in comparison function to help you compare different files/compare files of 2 files... if you open two files to be compared, ue will automatically fill in the two files to be compared. Otherwise, you need to use the browse function to find the two files, set text or bin, and determine whether to ignore something you don't care about. Click Compare to go to the comparison page. You can set to display only different, identical, or both. Daily applications are acceptable. (A bit like BC. I don't know who copied it)

 

Add current time

Sometimes you need to comment out the Code. For example, if you changed it that day, click F7.

 

Switch in the opened file

If you open multiple files, you need to switch between them. Click the mouse and Try Ctrl + TAB. Many Windows software support this function.

 

Restore to the last storage status

There are many changes to a file. If you want to undo it to the Initial State, file/revert to saved.

 

File backup, rename

A file is to be backed up. If you select Save As, the file opened after you save as will be used. Using fle/(make copy/backup), you can also directly rename the currently edited file/rename File

 

Project function of UE

11.00 and later, there was a function to automatically open the file that was opened when it was closed last time. It seems that there was no such function in the past. This allows you to use the project function. It is actually a set of related files. Project/(new project/workspace)

UE will ask you to save a *. prj file. Next time you can open ue, Project/(o Pen Project/workspace) continues the Session of the previous project. You can also file/(recent project/workspace)

 

UE function list

Open a program file, such as *. JS, and ensure that view/view as (*)/JavaScript. Select View/(View/lists)/function list. You can also use F8

 

Adjust the indentation of large pieces of code

Press tab to indent the code block to be adjusted, and then press SHIFT + TAB. What is the effect?

 

 

Right-click UE

 

1) space at the end of the line

Select the area to be spaces. Right-click/format/Menu ../trim trailing Spaces

 

2) Delete the entire row to locate the row to be deleted by the cursor.

Right-click/delete/Delete line (or press Ctrl + E)

 

3) add comments to the code

First, make sure that the correct syntax is selected to highlight view/view as (*)/JavaScript

Right-click a part of the vertex to be commented on/delete/comment add or comment remove

 

4) format the code

First, make sure that the correct syntax is selected to highlight view/view as (*)/JavaScript

Select the part to be formatted to make the code indent better. Right-click/Format menu/reindent Selection

However, if your code is a line, it is not followed by a semicolon. It seems that there is no effect.

 

5) copy the path of the current edited File

If you want to perform other operations on the current file, you need the path of the file. You do not need to repeat the path.

Right-click Copy file path/Name

 

6) copy the path of the current edited file ::

Right-click Copy file path/Name

 

7) open the file in the file content:

If the file contains content like "C: test.txt" or "http://www.test.com/js/test.js. You can move your mouse over it and right-click it. The top menu of the pop-up will have multiple options "C: test.txt" or "http://www.test.com/.../test.js", click it to open the corresponding file.

 

Adjust and add syntax highlighting

Advanced/configuration/syntax highlighting click the open file behind full path name for word list below, for example, D: Program filesultraeditwordfile. TXT is the configuration file/L1 "C/C ++" highlighted by UE syntax. It is the first language and/L2 is the second language. Currently these Word files can be downloaded from the following connection to http://www.ultraedit.com/index.php ?... Id = 40 # When Using wordfiles, download the corresponding word
File, copy it, and paste it to D: program files/ultraedit/wordfile. txt. Make sure that the first/L1 modification matches your existing system. It seems that the display of XML. XSL is not very good, and it is not accurate enough to run the doscommand to directly get the result F9. A window will pop up for you to enter the command and working directory. For example, Dir C: The Directory of drive C is listed. If you want to send a directory list to a friend, in addition to copying it from the DOS window, you can also use this simple method. Add simple column editing. The result is even better. The built-in ASCII tableview/ASCII table sometimes needs to know the ASCII value of a letter. It can be found from here! Is 33a is 65...
You can right-click multiple built-in clipboard to view clipboards, which contains 10 Built-in clipboard. Windows copy can only copy one content. If you want to copy multiple contents and paste them in different ways, the 10 clipboard should be enough for you. The CTRL + 0-9 numeric key is used to switch between the clipboard. For example, CTRL + 1, then copy the content "A"; Ctrl + 2, and then copy the content "B". If you want to paste, first press Ctrl + 1 and then Ctrl + v. If you want to use pasteb, press Ctrl + 2 and then Ctrl + v. Sometimes I accidentally changed the clipboard, and it was strange that I could not copy anything from another place. Pay attention to this situation.

[Reference Source: http://blog.csdn.net/wavaya/article/details/4021522]

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. this is because I was surprised when I used the "column editing" method. I never knew this method before. this is also the purpose of writing this memo document.

 

Tip 0: no registration code. How can I use ultraedit effectively?

Many people immediately think of using the crack version, but it is illegal to investigate it. In fact, ultraedit does not completely block the path. We can use some tips to block this problem.
Modify the ultraedit shortcut and change the command line to: e:/uedit9/uedit32.exe P:, where P: Must be a non-existent sub-drive on your machine. In this way, there will be no problem about the end of the trial.

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

 

Tip 2: How do I 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.

 

Tip 3: How do I delete empty rows?

Refer to the above two examples, find ^ p $ and replace it with null.

 

Tip 4: How do I add a timestamp to the edit file?

You can try the F7 shortcut?

 

Tip 5: Why is the copy/paste function unavailable?

I have used ultraedit several times and found that the copied and pasted content does not match. somehow, I simply restarted my notebook. today, I suddenly realized that ultraedit has 10 clipboard (Clipboard) and uses Ctrl + 0-Ctrl + 9 to switch them. CTRL + 0 is windows, and others are user-defined. I mistakenly call Ctrl + N during the use process, and the result content will be faulty. have you ever met?

 

Tip 6: Is there latency even when opening a small file?

This is a problem I encountered. Every time I open a file, there will always be a few seconds of delay. My machine performance is not bad. What's wrong? Network Printer is a ghost! Open "advanced"-> "Settings"-> "Editor"-> "advanced" to see if "load/restore printer settings" is selected "? If yes, remove it (the location may vary depending on the version or Chinese version ).

 

Tip 7: Open *. EC, *. Hea file. The time code is automatically displayed with high brightness.

Menu path: Bottom of the advanced-configuration-syntax highlighting page. Select "open" to open the file C:/program files/ultraedit/wordfile.txt and modify the first line of the file, add "EC hea" after "file extensions = c cpp cc cxx h hpp awk" to save the file.

 

Tip 8: place the commonly used menu functions as shortcut buttons on the panel.

Menu path: Advanced-configuration-toolbar. Select the function menu on the left, select the position on the right, and click Insert. For example, "dos to Unix" is used to remove the enter keys under DOS, "compare Files" is used to compare files, "display rusers", "display line numbers ", the most surprising feature is the "ASCII table" feature. You don't have to go through the box every time you check the ASCII code. However, you can view the ASCII values of characters in hexadecimal mode.

 

Tip 9: column mode (shortcut: Alt + C)

This feature is powerful when you need to modify data in batches or create data. Open a file, press Alt + C, CTRL + A, and start writing. You will find that all the rows in the file are performing the same action, and a row of the same data appears. You will find a variety of wonderful usage.

 

Tip 10: Mark rows

Move to the row to be marked press Ctrl + F2, mark it; go to any other row of the file, press F2, and return to the mark. Multiple tags can be added, and F2 is circulating in each tag. F2: Next bookmark, ALT + F2: Previous bookmark.

 

Tip 11: When writing a column sign to the background program, you do not want to write a row too long. Generally, it must be smaller than 80 bytes, however, even if the ruler is displayed, it is not clear whether the row at the bottom of the screen has reached 80 bytes, unless you look at the column number of the lower status bar. At this time, this thing will take effect. Menu path: View-set column markers. You can set two column logos. First, set the first one, enter 80 in the first edit box, and then select View-show column marker 1? A vertical line is displayed at the location of 80th bytes.

 

Tip 12. Select the row to be commented out, add comment in edit-commentadd, and remove edit-comment.

 

Tip 13: Edit

You can double-click the entire word and press Ctrl + J on the keyboard. Delete the entire line Ctrl + e, delete it to the beginning of the line Ctrl + F11, delete it to the end of the line Ctrl + F12.

 

Tip 14: Don't let it always ask if you want to convert a UNIX file to a DOS file at the end

When a UNIX file is opened in version 9.0, it will always ask whether to convert it to a DOS file, which is annoying. However, it can be blocked. Advanced-configuration-general, just click auto convert UNIX files in the middle right.

 

Tip 15: open the file in the file content

If the file contains content like "C:/test.txt" or "http://www.test.com/js/test.js", you can right-click it. At the top of the pop-up menu, multiple options "C:/test.txt" or "http://www.test.com/.../test.js" are clicked to open the corresponding file.

 

CTRL + B

When writing a program, parentheses are usually matched one by one, but if there are too many nesting, what should I do? Place the cursor at the beginning of the bracket and press Ctrl + B. ue will help you find the end of the bracket. You can also try to press Ctrl + B several times.

 

F3

By default, when you press F3, the UE can find the selected content. F3 is the next conforming content, and CTRL + F3 is the previous conforming content. (check the advanced/configuration/find tag)

 

CTRL + F2

There are many lines in the program. You can remember the number of lines you want, press Ctrl + G, and enter the row number to the row. However, I think it is more convenient to use Ctrl + F2. For example, you need to switch between multiple functions frequently. You can press Ctrl + F2 at the start of the function to add a bookmark to this row. Then, click Ctrl + F2 at the start of another function. If there is a bookmarkdonet, the background color of the word will be different. When you want to switch to the next bookmarks, press F2, but what should you do with the previous tag? CTRL + F2? No, hey, you just need to add the bookmarks or cancel the bookmarks for the current row. It should be Alt + F2.

 

Simply replace it with a regular expression

Sometimes there will be some simple text processing work. For example, if you have a text on hand, you need to add a ";" to the back of all rows ";". Use search replacement to complete Ctrl + R, and replace '^ P' with' ^ P; '(remember to select regular expressions to use the regular expression function .) Then you can select replace all (Alt + a), or click Start, search and replace one by one. The advantage is that you know that all replace those, in some cases, you may not want to replace all the characters such as '{$ ABC}' with 'var abc = ABC; '. ABC may be another character Ctrl + R, replace '{^ $ ^ (* ^)}' with 'var
^ 1 = ^ 1; '(remember to select regular expressions to use the regular expression function .) Then you can select replace all (Alt + a), or click Start to find and replace them one by one.

 

Custom shortcuts

Many functions of UE have shortcut keys, but not all. 11.00 has a text2html function. I encountered such operations on a large number of codes in my work. I just want to set a shortcut. Advanced/configuration/key mapping find the command you want in commands. I am htmlconvertspecialchars here, and then click the input box under the pres s new key to set a shortcut key that feels nice and does not conflict with each other. For example, CTRL + ALT + S. then click OK. Using common functions will multiply the efficiency.

 

Calculate the sum of the numbers in the selected area

For example, the following text

2

23a1

4 1.1

56

Select first, and then column/(sum column/selection). ue splits the number by space and letters to tell you a total number.

 

Column editing function of UE

First, ALT + C is required to enter the column editing mode. After entering, you can use the mouse to select a Square area. Delete, copy all you like. If you want to add a 'test' to the second character of each row, position the cursor to the first row and the second column in column editing mode. Column/(insert/fill column), you can also use this function to insert rows. The copy and paste operations in the column editing status are very interesting and can achieve unexpected results in some cases.

 

UE comparison

UE has a built-in comparison function to help you compare different files/compare files of 2 files... if you open two files to be compared, ue will automatically fill in the two files to be compared. Otherwise, you need to use the browse function to find the two files, set text or bin, and determine whether to ignore something you don't care about. Click Compare to go to the comparison page. You can set to display only different, identical, or both. Daily applications are acceptable. (A bit like BC. I don't know who copied it)

 

Add current time

Sometimes you need to comment out the Code. For example, if you changed it that day, click F7.

 

Switch in the opened file

If you open multiple files, you need to switch between them. Click the mouse and Try Ctrl + TAB. Many Windows software support this function.

 

Restore to the last storage status

There are many changes to a file. If you want to undo it to the Initial State, file/revert to saved.

 

File backup, rename

A file is to be backed up. If you select Save As, the file opened after you save as will be used. Using fle/(make copy/backup), you can also directly rename the currently edited file/rename File

 

Project function of UE

11.00 and later, there was a function to automatically open the file that was opened when it was closed last time. It seems that there was no such function in the past. This allows you to use the project function. It is actually a set of related files. Project/(new project/workspace)

UE will ask you to save a *. prj file. Next time you can open ue, Project/(o Pen Project/workspace) continues the Session of the previous project. You can also file/(recent project/workspace)

 

UE function list

Open a program file, such as *. JS, and ensure that view/view as (*)/JavaScript. Select View/(View/lists)/function list. You can also use F8

 

Adjust the indentation of large pieces of code

Press tab to indent the code block to be adjusted, and then press SHIFT + TAB. What is the effect?

 

 

Right-click UE

 

1) space at the end of the line

Select the area to be spaces. Right-click/format/Menu ../trim trailing Spaces

 

2) Delete the entire row to locate the row to be deleted by the cursor.

Right-click/delete/Delete line (or press Ctrl + E)

 

3) add comments to the code

First, make sure that the correct syntax is selected to highlight view/view as (*)/JavaScript

Right-click a part of the vertex to be commented on/delete/comment add or comment remove

 

4) format the code

First, make sure that the correct syntax is selected to highlight view/view as (*)/JavaScript

Select the part to be formatted to make the code indent better. Right-click/Format menu/reindent Selection

However, if your code is a line, it is not followed by a semicolon. It seems that there is no effect.

 

5) copy the path of the current edited File

If you want to perform other operations on the current file, you need the path of the file. You do not need to repeat the path.

Right-click Copy file path/Name

 

6) copy the path of the current edited file ::

Right-click Copy file path/Name

 

7) open the file in the file content:

If the file contains content like "C: test.txt" or "http://www.test.com/js/test.js. You can move your mouse over it and right-click it. The top menu of the pop-up will have multiple options "C: test.txt" or "http://www.test.com/.../test.js", click it to open the corresponding file.

 

Adjust and add syntax highlighting

Advanced/configuration/syntax highlighting click the open file behind full path name for word list below, for example, D: Program filesultraeditwordfile. TXT is the configuration file/L1 "C/C ++" highlighted by UE syntax. It is the first language and/L2 is the second language. Currently these Word files can be downloaded from the following connection to http://www.ultraedit.com/index.php ?... Id = 40 # When Using wordfiles, download the corresponding word
File, copy it, and paste it to D: program files/ultraedit/wordfile. txt. Make sure that the first/L1 modification matches your existing system. It seems that the display of XML. XSL is not very good, and it is not accurate enough to run the doscommand to directly get the result F9. A window will pop up for you to enter the command and working directory. For example, Dir C: The Directory of drive C is listed. If you want to send a directory list to a friend, in addition to copying it from the DOS window, you can also use this simple method. Add simple column editing. The result is even better. The built-in ASCII tableview/ASCII table sometimes needs to know the ASCII value of a letter. It can be found from here! Is 33a is 65...
You can right-click multiple built-in clipboard to view clipboards, which contains 10 Built-in clipboard. Windows copy can only copy one content. If you want to copy multiple contents and paste them in different ways, the 10 clipboard should be enough for you. The CTRL + 0-9 numeric key is used to switch between the clipboard. For example, CTRL + 1, then copy the content "A"; Ctrl + 2, and then copy the content "B". If you want to paste, first press Ctrl + 1 and then Ctrl + v. If you want to use pasteb, press Ctrl + 2 and then Ctrl + v. Sometimes I accidentally changed the clipboard, and it was strange that I could not copy anything from another place. Pay attention to this situation.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.