EditPlus shortcut keys

Source: Internet
Author: User
Tags html header ultraedit

Editplus select a line: ctrl + r
Editplus copies a line: ctrl + r selects the line, then ctrl + c copies.
Copy a line to the next line: Editplus has: Ctrl + j Copy a character from the previous line to the current line
Editplus deletes a line: Shift + Alt + Delete deletes the current line directly, or: shift + Delete also becomes.
Move one line to the previous / next line: alt + shift + up arrow (down arrow)
-------------------------------------------------- -------------------------------------------------- --------------------
ViewLineBreak Alt + Shift + L show or hide line breaks
ViewLineNumber Ctrl + Shift + L Show or hide the line number of the current document
SearchFind Alt + F3 Find the specified text SearchFindNext F3 Find the next matching text
SearchFindNextWord Ctrl + F3 Find the current word or selected text down SearchFindPrevious Shift + F3 Find the previous matching text
SearchFindPrevWord Ctrl + Shift + F3 Find the current word or selected text up
SearchFind Alt + F3 Find the specified text SearchFindNext F3 Find the next matching text
SearchFindNextWord Ctrl + F3 Find the current word or selected text down SearchFindPrevious Shift + F3 Find the previous matching text
SearchFindPrevWord Ctrl + Shift + F3 Find the current word or selected text up
SearchMarkerPrev Shift + F4 Go to the previous mark position SearchMatchBrace Ctrl +] Search a pair of matching brackets
SearchSelectBrace Ctrl + Shift +] search for a pair of matching brackets and select the text
Editplus label switching: Switching between different labels can be done with the mouse or with the "Ctrl + Tab" key.
-------------------------------------------------- -------------------------------------------------- --------------------
If you select a certain part, use shift + Pageup shift + Pagedown to select all in front of the cursor and all behind the cursor
If it is line by line + select shift + up and down
Editplus merge lines: Ctrl + Shift + J

Delete multiple or one line: Alt + Shift + Delete delete the current line
Delete word: Alt + Delete delete current word
Reverse case: Ctrl + K Reverse case of selected text
Select line: Ctrl + R select current line
Select a word: Ctrl + W select the current word (these two are often used)
Lowercase: Ctrl + L converts the selected text to lowercase
Capitalization: Ctrl + U converts the selected text to uppercase
-------------------------------------------------- --------------------
Operation shortcut keys for words:
Move to the previous word Ctrl + Left Move to the previous word
Extend the selection to the previous word Ctrl + Shift + Left Extend the selection to the previous word
Move to next word Ctrl + Right Move to next word
Extend the selection to the next word Ctrl + Shift + Right Extend the selection to the next word


Delete to the end of the line Ctrl + Shift + Delete Delete to the end of the current line
Delete to the end of the word Ctrl + Delete Delete to the end of the current word
Delete line Alt + Shift + Delete Delete current line
Delete word Alt + Delete Delete current word
Create a copy of a character Ctrl +-Copy a character from the previous line to the current line
Create a copy of the current line Ctrl + J Create a copy of the current line
-------------------------------------------------- --------------------
Keyboard shortcuts for switching between file labels opened by Editplus / UltraEdit:
Use the keyboard when writing code, this is to use the mouse to click when switching files, it is more troublesome.
There are not many online introductions to this keyboard shortcut.
Ctrl + Tab or Ctrl + F6 or Ctrl + Shift + F6

Editplus edit perl / php double-click the selected variable solution:
http://www.jeftom.com/?p=375

 

In the technique, based on my usual practice on EditPlus, I refer to some official documents in the example of compiler integration. Several articles were collected from the Internet, here I indicate the source or original author. If you are the corresponding author and do not want the article to be placed here, please inform me and I will delete it in time. ----- Liangjh

I do n’t necessarily have much technical content in some of my own, but I hope that sometimes I can save everyone some time
-------------------------------------------------- ----
Article or technique and original author or source:

Regular expression class
[1] Regular expression application-replace the specified content to the end of the line
[2] Regular expression application-number replacement [email protected], [email protected]
[3] Regular expression application-delete the specified character at the end of each line
[4] Regular expression application-replace multiple lines with half-angle brackets
[5] Regular expression application-delete empty lines ------------ Jiang Dehua
Software skills
-------------------------------------------------- ----
[6] Software skills-notes on keyloggers
[7] Software skills-a convenient way to close the document label
[8] Software tips-how to remove the suffix prompt when EditPlus saves a text file?
[9] Software Tips-Solutions to Prompt Cannot Find Grammar File
[10] Software tips-set editplus to support other texts, such as Korean [email protected]
[11] Software skills-FTP upload settings ---------------------------- Li Yingwen 2.11 Chinese version
[12] Software tips-how to disable the backup file function?
[13] Software skills-add grammar files, auto-complete files, and clip library files
Tool integration
-------------------------------------------------- ----
[14] Tool integration-examples of compiler integration (Java, Borland C ++, Visual C ++, Inno Setup, nsis, C #)
[15] Tool integration-Let Editplus debug PHP programs ---------------------- avenger, [email protected]
[16] Tool Integration-Creating PHP Debugging Environment (2) --------- 2.17 Chinese Version of Old Seven
[17] Integrate EDITPLUS in WINPE
Subsequent addition
-------------------------------------------------- ----
[18] Support files with UTF-8 mark / without UTF-8 mark

Each step is very detailed, there is no need to map, and the volume should not be too large.

[1] Regular expression application-replace the specified content to the end of the line
The original text is like the following two lines
abc aaaaa
123 abc 444

Hope that every time you encounter "abc", replace "abc" and the content from the end to the end of the line is "abc efg"
That is, the text above is finally replaced with:
abc efg
123 abc efg

solve:
① In the replacement dialog, enter "abc. *" In the search content
② Select the "Regular Expression" check box at the same time, and then click the "Replace All" button
Among them, the meaning of the symbol is as follows:
"." = Match any character
"*" = Match 0 times or more

Note: In fact, it is regular expression replacement. Here is just to sort out some of the questions that have been raised. Simply from the regular expression itself, you can derive thousands of special cases.

[2] Regular expression application-number replacement ([email protected], [email protected])
Hope to put
asdadas123asdasdas456asdasdasd789asdasd
Replace with:
asdadas [123] asdasdas [456] asdasdasd [789] asdasd

In the Replace dialog box, select the "Regular Expression" check box;
Enter "[0-9] [0-9] [0-9]" in the search content without quotes
Enter "[\ 0 \ 1 \ 2]" in "Replace with:" without quotes
The scope is the scope of your operation, and then choose to replace.

In fact, this is also a special case of the use of regular expressions, "[0-9]" means to match any special case between 0-9, and "[a-z]" means to match any special case between a ~ z
The above repeated use of "[0-9]", which means three consecutive numbers
"\ 0" represents the prototype corresponding to the first "[0-9]", "\ 1" represents the prototype corresponding to the second "[0-9]", and so on
"[", "]" Are simple characters, which means adding "[" or "]", if you enter "other \ 0 \ 1 \ 2other", the replacement result is:

asdadas other 123 other asdasdas other 456 other asdasdasd other 789 other asdasd

Functional enhancements (by [email protected]):
If the search content "[0-9] [0-9] [0-9]" is changed to "[0-9] * [0-9]", corresponding to 1 or 123 or 12345 or ...
Everyone customized according to needs

There are many related content, you can refer to the grammar of regular expressions to study carefully

[3] Regular expression application-delete the specified character at the end of each line
Because these characters also appear in the line, it must not be implemented with a simple replacement
such as
12345 1265345
2345
Need to delete "345" at the end of each line
This is also the usage of regular expressions. In fact, it is relatively simple to look at regular expressions carefully. However, since this problem is raised, it means that there must be a process of understanding regular expressions. The solutions are as follows
solve:
In the replacement dialog, enable the "Regular Expression" checkbox
Enter "345 $" in the search content
Here "$" means match from the end of the line

If you match from the beginning of the line, you can use "^" to achieve, but EditPlus has another function that can easily delete the string at the beginning of the line
a. Select the row to operate
b. Edit-Format-Delete line comment
c. Enter the first character of the line to be cleared in the pop-up dialog box and confirm

[4] Regular expression application-replace multiple lines with half-angle brackets
Hundreds of web pages have the following code:
<SCRIPT LANGUAGE = "JavaScript1.1">
<!-
htmlAdWH (‘93163607’, ‘728’, ‘90’);
//->
</ SCRIPT>
I want to remove them all, but I found a lot of search & replace software, all of which can only operate on "one line".

EditPlus opens hundreds of web files smoothly, so it is fully qualified for this task.
The specific solution is to use regular expressions in Editplus. Since "(", ")" is used as a sign of a preset expression (or sub expression), search
"<SCRIPT LANGUAGE =" JavaScript1.1 "> \ n <!-\ NhtmlAdWH (‘ 93163607 ‘,‘ 728 ‘,‘ 90 ‘.); \ N //-> \ n </ SCRIPT> \ n”
It will prompt that it cannot be found, so it cannot be replaced. In this case, you can use "(", ")" to replace with any character mark, that is, a half-width period: ".". for  Change content to
<SCRIPT LANGUAGE = "JavaScript1.1"> \ n <!-\ NhtmlAdWH.‘93163607 ‘,‘ 728 ‘,‘ 90 ’.; \ N //-> \ n </ SCRIPT> \ n
Enable the "regular expression" option in the replacement dialog box, then you can complete the replacement

Perfect: ([email protected])
For special symbols like (), it should be represented by, which is also a very standard regexp syntax, which can be written as
<SCRIPT LANGUAGE = "JavaScript1.1"> \ n <!-\ NhtmlAdWH‘93163607 ‘,‘ 728 ‘,‘ 90 ‘; \ n //-> \ n </ SCRIPT> \ n

[5] Regular expression application-delete blank lines
Start EditPlus and open the text file to be processed.
① Select the "Replace" command in the "Find" menu to pop up a text replacement dialog box. Select the "Regular Expression" checkbox to indicate that we want to use regular expressions in find and replace. Then, select "Current File" in "Replace Range" to indicate the operation on the current file.
② Click the button on the right side of the "Find Content" combo box, a drop-down menu appears.
③. The following operation adds a regular expression, which represents the blank line to be found. (Tips: blank lines only include space characters, tabs, carriage returns, and must start with one of these three symbols and end with a carriage return. The key to finding blank lines is to construct a blank line Regular expression).
Enter the regular expression "^ [\ t] * \ n" directly in "Find", note that there is a space character before \ t.
(1) Select "match from the beginning of the line", the character "^" appears in the "Find Content" combo box, indicating that the string to be searched must appear at the beginning of a line in the text.
(2) Select "Character in Range", then a pair of brackets "[]" will be added after "^", and the current insertion point is in brackets. Brackets are expressed in regular expressions, and the characters in the text match any one of the characters in the brackets to meet the search condition.
(3) Press the space bar to add a space character. The space character is a component of the blank line.
(4) Select "Tab" and add "\ t" which represents the tab.
(5) Move the cursor, move the current insertion point after "]", and then select "match 0 or more times", this operation will add the asterisk character "*". The asterisk indicates that there are zero or more space characters or tabs in parentheses "[]" in front of it.
(6) Select "line feed" and insert "\ n" to represent the carriage return character.
④. The "Replace with" combo box remains empty, indicating that the found content is deleted. Click the "Replace" button to delete blank lines one by one, or click the "Replace All" button to delete all blank lines (Note: EditPlus sometimes has the problem that "Replace All" cannot completely delete blank lines at one time. It may be a program bug. Press the button several times).

[6] Software Skills-Notes on Keylogger
The keyboard record of EditPlus is similar to the macro operation of UltraEdit, but the function is relatively single, and the editability of the recorded file is poor.
Since it is basically impossible to edit the recorded file, in order to avoid recording failure during recording, it is recommended to use pure keyboard operation. The following are the key keyboard combinations:
Ctrl + F = bring up the search dialog
Ctrl + H = bring up the replacement dialog
Alt + F4 = Close function, for example, close the search dialog box, close the replacement dialog box, etc.
Other keyboard shortcuts can be easily found in "Help-Shortcut List", so I won't go into details here.

[7] Software tips-a convenient way to close document tags
Right-click the document label toolbar, select "Label Options" in the pop-up menu, and select "Close with the button in the middle of the mouse", which includes the mouse wheel.

[8] Software tips-how to remove the suffix prompt when EditPlus saves a text file?
If you use EditPlus for text editing, then every time you create a text file and save it after editing, despite the text file displayed in the file type drop-down list, EditPlus still asks you to add the ".txt" suffix, is it annoying?
Solution:
① Create an empty file "template.txt" in the program directory
②In the "Tools-Parameter Settings-Template", click the "Add" button to add a template, "Menu Text" enter "Text" here, browse "template.txt", and then you can confirm
③ "File-New-text", you can create an empty text file, when saving, this file automatically has the extension ".txt", which avoids headache confirmation
④ The template setting file name is "template.ini", if the same path as the main program, you can use a relative path
Wordy, but it works
To automatically create a file with a certain suffix, the method is the same as above.

[9] Software skills-Prompt to find the grammar file * .stx solution
The reason is that the set grammar file does not exist or the path setting is incorrect. This is because the syntax of EditPlus is to use an absolute path for the setting file, and after you set the syntax file, copy the program to another directory, so EditPlus cannot find the syntax file.
Solution:
In the main program directory, find Setting.ini This is the file where EditPlus stores the syntax
Find text content with the suffix ".stx", "acp", or find the line with the drive symbol, such as
Syntax file = C: \ Program Files \ EditPlus 2 \ cpp.stx
Then, replace "C: \ Program Files \ EditPlus 2 \" with the path of your current software.
The solution to other tips that the file cannot be found is the same as above

[10] Software tips-set editplus to support other text, such as Korean
Open the file in editplus and come out to open the file dialog box; then click the ellipsis behind "Converter", and the custom converter dialog box will appear; select the encoding method you need on the right, add it to the left, and then click OK; Select the desired encoding method in the drop-down box, and then open the file.

[11] Software skills-FTP upload settings
"File-> Remote Operation-> FTP Upload" Set the parameters in the "Settings" tab ("/" should be added in front of "Subdirectory" such as "/ web /"), click "OK" to return to "FTP Upload" Tab, and then click "Upload"; "Batch Upload" settings are similar.

[12] Software tips-how to disable the backup file function?
On the file options page of "Preferences", disable the "‘ Automatically create backup file when saving '”option

[13] Software skills-add grammar files, auto-complete files, and clip library files
To add * .STX (grammar file) or * .ACP (auto-complete file):
1. Select "Preferences → Grammar"
2. Click the "Add" button, name it, and enter the corresponding extension in the "Extension" section (without ".")
3. Browse / enter STX (syntax file part) and ACP (automatically complete file part).
Add clip library file (* .CTL)
Copy the corresponding * .CTL file to the software installation directory, restart EditPlus, the system will automatically recognize.

The author's homepage has many grammars to automatically complete file download, address
http://editplus.com/files.html

[14] Tool integration-examples of compiler integration (Java, Borland C ++, Visual C ++, Inno Setup, nsis)
Set on the "Tools → Preferences → User Tools" option page, setting steps
① Set the group name, you can not set here
② Click the "Add Tool → Application" button and make the following settings
③ Various parameters like "$ (FilePath)" can be obtained from the arrow drop-down menu on the right side of the text box, the specific meanings are as follows
Parameter Description
$ (FilePath) File path (full file name, including directory and file name)
$ (FileDir) file directory (without file name)
$ (FileName) File name (without directory)
$ (FileNameNoExt) File name without extension (without directory)
$ (FileExt) extension (current file)
$ (ProjectName) Project name (current project name)
$ (CurLine) Current line number (line number at cursor position)
$ (CurCol) Current column number (column number at cursor position)
$ (CurSel) current text (insert currently selected text)
$ (CurWord) Current word (insert current word)
$ (WindowList) displays the current window list and selects a specific file


Example 1. Java compiler

Menu text: Java compiler
Command: c: \ java \ bin \ javac.exe
Parameter: "$ (FilePath)"
Initial directory: $ (FileDir)
Capture output: open

To run the compiled Java class file, you can make the following settings:
Menu text: Java
Command: c: \ java \ bin \ java.exe
Parameter: $ (FileNameNoExt)
Initial directory: $ (FileDir)
The "command" part should be replaced with the path to the actual Java interpreter.

Example 2. Borland C ++

Menu text: Borland C
Command: c: \ bc \ bin \ bcc32.exe
Parameters: -Ic: \ bc \ include -Lc: \ bc \ lib -n $ (FileDir) $ (FilePath)
Initial directory: c: \ bc \ bin
Capture output: open

Example 3. Visual C ++

Menu text: Visual C ++
Command: c: \ msdev \ vc98 \ bin \ cl.exe
Parameter: "$ (FilePath)"
Initial directory: $ (FileDir)
Capture output: open

Example 4. Inno Setup
Menu text: Compile Inno
Command: C: \ Program Files \ Inno Setup 4 \ Compil32.exe "
Parameter: / cc $ (FileName)
Initial directory: $ (FileDir)
Capture output: open

Example 5. nsis
Menu text: Compile nsis
Command: C: \ NSIS \ makensis.exe
Parameter: $ (FileName)
Initial directory: $ (FileDir)
Capture output: open

Example 6. C #
Menu text: Compile C #
Command: C: \ WINDOWS \ Microsoft.NET \ Framework \ v1.0.3705 \ csc.exe
Parameter: $ (FileName)
Initial directory: $ (FileDir)
Capture output: open

In the above settings, in the command part, you must use the absolute path of the respective compiler in the system.

After setting, you can run the corresponding tool in the "Tools" menu, the operation results will be displayed in the bottom output window, you can also use the shortcut key (Ctrl + 0-9) to run, or through the "User Toolbar" The shortcut button runs.

To run the compiled * .exe file, you can make the following settings (in this case, the executable file needs to have the same name as the compiled file):
Menu text: Run
Command: $ (FileNameNoExt)
parameter:
Initial directory: $ (FileDir)

[15] Tool integration-Let Editplus debug PHP programs
1: Open Editplus and select "Tools-> Configure User Tools ..." menu.
2: In the pop-up window, select "Add Tool-> Application", give the new program a memorable name, for example, here we use "Debug PHP", enter "Debug PHP" in the "menu text". Click the button to the right of "Command Line" and find the path where your php.exe is located, for example here is "c: \ php \ php.exe". Then click the drop-down button to the right of "Parameters" and select "File Path", and finally select the check box in front of "Capture Output".
3: Now test it, create a new php file, press the shortcut key Ctrl + 1 to activate the tool we just set (if you set up multiple tools, the shortcut key may be different), now you can see that it has been able to It works normally. But there is another point that is not ideal: if your PHP program makes a mistake, you will be prompted in the output window which line is wrong. Click this line to prompt, Editplus always prompts you that you cannot find a certain file, whether it is new. Next we want to fix this feature.
4: Open the user tool setting window just now and find the "Debug PHP" tool you just set. Click the "Output Mode" button next to the "Capture Output" checkbox, a form for defining the output mode will pop up, remove the check box in front of the "Use Default Output Mode", under "Regular Expression" Enter "^. + In (. +) Line ([0-9] +)" (excluding the quotes) in the text box. Careful friends may find that the regular expression syntax is also used here. Then, select "Preset Expression 1" in the "File name" drop-down menu below, which is the first parameter in the regular expression above, and select "Preset Expression 2" in the "Row" drop-down menu item, "Column "The drop-down item remains empty. Then save the settings.
5: Okay, let's try it again. Double-click the number of error lines, Editplus will automatically activate the error file, and position the cursor to the error line, is it particularly convenient ?!
Now, Editplus has been able to debug PHP files immediately after our "renovation". Although it is not a "visual" interface, it is still very useful for troubleshooting common small programs. Editplus is really a great tool. If you have any tips, do n’t forget to share it with everyone. ^ O ^

If you cannot switch the wrong line number, please try to modify as follows: (by [email protected])
1.php_ini html_errors = Off is turned on
// If you do n’t open, the expression in 3. should be modified
2. Change the parameter to: -q -f "$ (FilePath)"
// The debugging of a file with a space in the file name fails without the "" symbol ...
//-q does not output html header information, you can remove it, but you usually do n’t use those header information when debugging
3. "^. + In (. +) Line ([0-9] +)" changed to "^. + In (. +) On line ([0-9] +) $"
// If it still doesn't work, please pay attention to the debugging results, modify the expression yourself to take out the file name and line number 

【16】 Tool integration: build PHP debugging environment (2)
1: Locate the clip library on PHP4 functions. When editing, you can use the [insert] - > [match clip] command to automatically complete the final input of complete PHP functions (or press F2 directly)
2: Similar to the above, after selecting some text, it can also be completed automatically. (same as F2)
3: In [parameter selection] - > [settings and syntax] - > PHP - > autocomplete, select the php.acp file in the directory, and you can customize your own autocomplete mode
4: To preview files in real time, you can add a local directory in [parameter selection] - > [tool] - > Web server (Note: do not add http: / /, it should be a valid site).
For example: Host - > localhost / PHP &amp; ා124; root directory - > D: \ PHP
Host - > localhost / ASP &amp; ා124; root - > D: \ ASP
Host - > localhost / CGI &amp; ා124; root - > D: \ CGI
After setting, as long as the script files are in these directories (subdirectories are OK), they can be interpreted correctly
5: Various syntax and template files can be obtained from http://editplus.com/files.html, and can be selected and edited as required.
6: CTRL + F11 to display a list of functions in the current file
7: Add various user tools, such as:
Start MySQL server management tool - > C: \ MySQL \ bin \ winmysqladmin.exe
Start Apache server - > C: \ Apache \ bin \ apache.exe - K start
Start Apache server - > C: \ Apache \ bin \ apache.exe - K stop (shutdown)
8: DBG is attached with a file of "Pro u results. PHP", which can analyze the performance of PHP program
It's not a real debugger, but it's enough
OK! After the transformation, is it a bit like an IDE? Almost, no immediate help... Look at mine, and then:
9: Add PHP? Manual? En.chm (the extended help manual is the best) to the user tool. When you meet a keyword you need to refer to, position the cursor on it and press the shortcut key Ctrl + 1. Do you see it
When there is a function name that you can't remember when you input it, first call up the function according to the method in Article 1, and then... How about?
Some of the above settings are for debugging tools. Because there are many such tools, you can refer to the above basic settings, so there are just a few more examples.
【17】 Integrating EDITPLUS in winpe
It can be made in winpe based on the current bartpe, and the menu is made by nu2menu
The default location is programseditplus\
The default system location is the i386 directory of the CD
Add shell integration in autorun.bat of i386 / system32 (system right click)
regedit /s %SystemDrive%\programs\editplus\REG.REG
regsvr32 /s \programs\editplus\EPPSHELL.DLL
(reg.reg saves the toolbar information of EPP, of course, registered users can also place the registration information)
Copy the files in the EDITPLUS installation package to programs \ EDITPLUS \. Note that if there is setting.ini, delete the file, and add the following sentence in nu2menu (it can be arranged under specific menu items as required)
<MITEM TYPE="ITEM" DISABLED="@Not(@FileExists(@GetProgramDrive()\Programs\EditPlus\editplus.exe))" CMD="RUN"
Func = "@ getprogramdrive() \ programs \ EDITPLUS \ EDITPLUS. Exe" > EDITPLUS text editing < / mitem >
【18】 Support file [email protected] with / without UTF-8 tag to propose and test
Here, byte order mark is translated into tag / file header / label
Parameter selection - file - set "support UTF-8 file without UTF-8 file header". Here I translate the label as UTF-8 file header. If this item is checked, it should be saved as UTF-8 without label. If it is not checked, it should be saved as UTF-8 with BOM.
In this way, you can open the signed UTF-8 file and edit it normally, but you can't open the file without signature. If you want to open the file without signature, you need to change it back... Although it's a bit troublesome, it can be used at last
EDITPLUS shortcut

Alibaba Cloud Hot Products

Elastic Compute Service (ECS) Dedicated Host (DDH) ApsaraDB RDS for MySQL (RDS) ApsaraDB for PolarDB(PolarDB) AnalyticDB for PostgreSQL (ADB for PG)
AnalyticDB for MySQL(ADB for MySQL) Data Transmission Service (DTS) Server Load Balancer (SLB) Global Accelerator (GA) Cloud Enterprise Network (CEN)
Object Storage Service (OSS) Content Delivery Network (CDN) Short Message Service (SMS) Container Service for Kubernetes (ACK) Data Lake Analytics (DLA)

ApsaraDB for Redis (Redis)

ApsaraDB for MongoDB (MongoDB) NAT Gateway VPN Gateway Cloud Firewall
Anti-DDoS Web Application Firewall (WAF) Log Service DataWorks MaxCompute
Elastic MapReduce (EMR) Elasticsearch

Alibaba Cloud Free Trail

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.