https://www.cnblogs.com/kevingrace/p/5996133.html
https://www.bbsmax.com/A/B0zqeYaZzv/
- 判断字符串是否以某些字符开头
https://devnote.pro/posts/10000006301174
方式1:双等于号== 比较
使用bash检查字符串是否以某些字符开头可以使用双等于号==比较
[[ $str == h* ]]
示例
str="hello"
if [[ $str == h* ]];
then
echo 'yes'
fi
有两个地方需要注意:
1.h*不需要使用引号括起来,使用引号括起来是直接做相等比较
2.比较语句使用双中括号括起来,而不是使用单中括号
方式2:=~正则比较
如果使用Bash的正则
str="hello"
if [[ "$str" =~ ^he.* ]]; then
echo "yes"
fi
使用正则匹配字符串的开头字符需要注意:
1.he*:不要使用he,这里的星号表示e字符0到多个,即h,以及heeee都是测试通过的
2.he.*:这里只允许包含he的字符串通过测试
3.^he.*:这个表示是以he开头的字符串通过检测
- 比较相等、不相等方法小结
https://www.cnblogs.com/zpzp/p/15905379.html
https://www.jb51.net/article/56559.htm
https://blog.csdn.net/halazi100/article/details/79590706 (=与==的区别)
#!/bin/sh
#测试各种字符串比较操作。
#shell中对变量的值添加单引号,爽引号和不添加的区别:对类型来说是无关的,即不是添加了引号就变成了字符串类型,
#单引号不对相关量进行替换,如不对$符号解释成变量引用,从而用对应变量的值替代,双引号则会进行替代
#author:tenfyguo
A="$1"
B="$2"
echo "输入的原始值:A=$A,B=$B"
#判断字符串是否相等
if [ "$A" = "$B" ];then
echo "[ = ]"
fi
#判断字符串是否相等,与上面的=等价
if [ "$A" == "$B" ];then
echo "[ == ]"
fi
#注意:==的功能在[[]]和[]中的行为是不同的,如下
#如果$a以”a”开头(模式匹配)那么将为true
if [[ "$A" == a* ]];then
echo "[[ ==a* ]]"
fi
#如果$a等于a*(字符匹配),那么结果为true
if [[ "$A" == "a*" ]];then
echo "==/"a*/""
fi
#File globbing(通配) 和word splitting将会发生, 此时的a*会自动匹配到对应的当前以a开头的文件
#如在当前的目录中有个文件:add_crontab.sh,则下面会输出ok
#if [ "add_crontab.sh" == a* ];then
#echo "ok"
#fi
if [ "$A" == a* ];then
echo "[ ==a* ]"
fi
#如果$a等于a*(字符匹配),那么结果为true
if [ "$A" == "a*" ];then
echo "==/"a*/""
fi
#字符串不相等
if [ "$A" != "$B" ];then
echo "[ != ]"
fi
#字符串不相等
if [[ "$A" != "$B" ]];then
echo "[[ != ]]"
fi
#字符串不为空,长度不为0
if [ -n "$A" ];then
echo "[ -n ]"
fi
#字符串为空.就是长度为0.
if [ -z "$A" ];then
echo "[ -z ]"
fi
#需要转义<,否则认为是一个重定向符号
if [ $A /< $B ];then
echo "[ < ]"
fi
if [[ $A < $B ]];then
echo "[[ < ]]"
fi
#需要转义>,否则认为是一个重定向符号
if [ $A /> $B ];then
echo "[ > ]"
fi
if [[ $A > $B ]];then
echo "[[ > ]]"
fi
获取文件名、后缀名
file=”thisfile.txt”
echo “filename: ${file%.*}”
echo “extension: ${file##*.}”
输出:
filename: thisfile
extension: txt
http://t.zoukankan.com/hanxing-p-7599105.html
建议使用substr的方式,使用${}可能对于不同的脚本解释器有兼容性问题。报Bad substitution问题,见https://blog.csdn.net/simplemethane/article/details/124748777
substr的索引是从1开始,而不是0.
-
字符串切割
cut -d "=" -f 2
:表示将其=号作为分隔符,选取其第2个字段,所有就是root
https://blog.csdn.net/liaowenxiong/article/details/119171061 -
清除空字符串
echo $VAR | sed 's/ //g'
-
清除回车符和换行符
cat result.txt | while read line; do let i+=1; b=$(echo $line|tr -d "\n"|tr -d "\r"); done;
-
字符串转数字
var=`echo $var| awk '{print int($0)}'`
-
数字转字符串
直接加引号即可,例如
var=1
var1="$var" 这样就转化了
-
是否包含子字符串
https://blog.csdn.net/llm_hao/article/details/126856298 -
判空与非空
https://blog.csdn.net/LiLittleCat/article/details/120188514
if [[ str1 = str2 ]] # 当字符串 str1 和 str2 有相同内容、长度时为真
if [[ str1 != str2 ]] # 当字符串 str1 和 str2 不等时为真
if [[ -n "str1" ]] # 当字符串 str1 的长度大于 0(非空)时为真
if [[ -z "str1" ]] # 当字符串 str1 的长度为 0(空)时为真
if [[ str1 ]] # 当字符串 str1 为非空时为真
https://blog.csdn.net/canyudeguang/article/details/53455977
flag=true
read -p "please input a number:" num
while $flag
do
len=`echo "$num"|sed 's/[0-9]//g'|sed 's/-//g'`
[ -n $len ] && flag=false || read -p "please input a integer:" num
done
0 条评论