2020
10-21
10-21
shell 判断字符串是否存在数组中的实现示例
语法格式:[["${array[@]}"=~"字符串"]]示例:#!/bin/sh##数组array=(addressbasecartcompanystore)#$1如果存在,输出$1exists,$1如果不存在,输出$1notexistsif["$1"!=null];thenif[["${array[@]}"=~"${1}"]];thenecho"$1exists"elif[[!"${array[@]}"=~"${1}"]];thenecho"$1notexists"fielseecho"请传入一个参数"fi扩展:这种方式不仅可以判断字符串是否存在数组中,也快判断字符串...
继续阅读 >