Bash 检查字符串是否与正则表达式匹配
示例
3.0检查字符串是否恰好由8位数字组成:
$ date=20150624$ [[ $date =~ ^[0-9]{8}$ ]] && echo "yes" || echo "no"
yes
$ date=hello
$ [[ $date =~ ^[0-9]{8}$ ]] && echo "yes" || echo "no"
no
以上是 Bash 检查字符串是否与正则表达式匹配 的全部内容, 来源链接: utcz.com/z/340683.html