Shell string Truncation

Source: Internet
Author: User

Removes the leftmost character from the string.

[admin@v035114 ~]$ vi test.sh   1 STR="abcd"  2 STR=${STR#"a"}  3 echo $STR  4 STR=${STR%"d"}                                                                                            5 echo $STR

Execute scripts

[admin@v035114 ~]$ ./test.sh bcdbc

Symbol # indicates the leftmost side; % indicates the left and right sides. Pay attention to the reference of variables in braces. No symbol is added before. $

If the symbol string after # Or % does not match the leftmost or rightmost value

[admin@v035114 ~]$ vi test.sh   1 STR="abcd"  2 STR=${STR#"b"}  3 echo $STR  4 STR=${STR%"d"}                                                                                                             5 echo $STR

Execute scripts

[admin@v035114 ~]$ ./test.sh abcdabc

Try to intercept multiple characters. The following script will intercept the leftmost two characters AB

[admin@v035114 ~]$ vi test.sh   1 STR="abcd"  2 STR=${STR#"ab"}  3 echo $STR  4 STR=${STR%"c"}                                                                                                             5 echo $STR

Execute scripts

[admin@v035114 ~]$ ./test.sh cdcd
Related Article

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.