判断字符串长度是否为0
生活随笔
收集整理的這篇文章主要介紹了
判断字符串长度是否为0
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
#!/bin/bash
# testing string length#-n 判斷長度是否非零
#-z 判斷長度是否為零val1=testing
val2=''if [ -n "$val1" ]
then echo "The string $val1 is not empty"
elseecho "The string $val1 is empty"
fiif [ -z "$val2" ]
then echo "The string $val2 is empty"
elseecho "The string $val2 is not empty"
fiif [ -z "$val3" ]
then echo "The string $val3 is empty"
elseecho "The string $val3 is not empty"
fi
?
轉載于:https://my.oschina.net/xufenfei/blog/877624
總結
以上是生活随笔為你收集整理的判断字符串长度是否为0的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 计算机专业英语背什么,怎么样才能更有效快
- 下一篇: ArcGIS教程:地统计模型的组成