There are many methods on the Internet that, although correct, do not produce correct results when used. Here is the correct method. Remove leading spaces $text=" 123 456 " # This way of writing ensures the correct result. text=`echo $text | sed -e 's/^[ \t]*//g'` # These methods are not tested, please refer to the above for writing. # Remove trailing spaces sed 's/[ \t]*$//g' # Delete leading and trailing spaces, but not spaces in between sed -e 's/^[ \t]*//g' -e 's/[ \t]*$//g' # Remove all spaces in a string sed 's/[[:space:]]//g' Of course there is an easy way: # Replace only one text=${text/ /-} # Replace all text=${text// /-} Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: MySQL slow query log configuration and usage tutorial
>>: In-depth understanding of the implementation principle of require loader
Table of contents 1. Introduction II. Monitoring ...
Below are some common parameters of /etc/my.cnf o...
When installing mha4mysql, the steps are roughly:...
Table of contents 1. Operators Summarize 1. Opera...
<br />Navigation design is one of the main t...
Prelude We all know that nginx is an excellent re...
Container auto-start Docker provides a restart po...
Bugs As shown in the figure, I started to copy th...
Table of contents 1. Parent component passes data...
This article example shares the specific code of ...
binlog is a binary log file, which records all my...
This article shares the installation and configur...
Table of contents Install Docker-ce for the devel...
Table of contents 1. Build the Vue environment 2....
Yum (full name Yellow dog Updater, Modified) is a...