其他分享
首页 > 其他分享> > 字符串相等性

字符串相等性

作者:互联网

字符串的相等和不等条件不言自明,很容易看出两个字符串值是否相同。

$ cat test7.sh
#!/bin/bash 
# testing string equality 
testuser=rich 
# 
if [ $USER = $testuser ] 
then 
 echo "Welcome $testuser" 
fi 
$ 
$ ./test7.sh
Welcome rich 
$ 

字符串不等条件也可以判断两个字符串是否有相同的值。

$ cat test8.sh
#!/bin/bash 
# testing string equality 
testuser=baduser 
# 
if [ $USER != $testuser ] 
then 
 echo "This is not $testuser" 
else 
 echo "Welcome $testuser" 
fi 
$ 
$ ./test8.sh
This is not baduser 
$ 

记住,在比较字符串的相等性时,比较测试会将所有的标点和大小写情况都考虑在内。

标签:相等,testuser,test7,Welcome,echo,sh,字符串
来源: https://blog.csdn.net/m0_64433385/article/details/121722611