gpt4 book ai didi

linux - 如何扫描字符串的内容以查看它是否包含大写字符或小写字符

转载 作者:太空宇宙 更新时间:2023-11-04 11:02:23 25 4
gpt4 key购买 nike

你好我正在尝试制作一个密码生成器来扫描字符串以查看它是否包含大写或小写字符。字符串的内容是使用一组字符生成的,以供使用

char=(0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V X W Y Z)

#chars=(~ ! @ # $ % ^ & * - +)
####rand2=$random % 11


max=${#char[*]} for i in `seq 1 $pwdlen`
do
let "rand=$RANDOM % $max"
str="${str}${char[$rand]}"
done echo $str exit 0 fi str=$1 len=${#str}

if [ $len -lt 8 ] then
echo $str is too short fi if [ $len -gt 16 ] then
echo $str is too long fi

最佳答案

用正则表达式(regex)检查字符串是否包含至少一个大写字符:

if [[ "$str" =~ [[:upper:]] ]]; then
echo "uppercase character found"
fi

使用正则表达式检查字符串是否包含至少一个小写字符:

if [[ "$str" =~ [[:lower:]] ]]; then
echo "lowercase character found"
fi

关于linux - 如何扫描字符串的内容以查看它是否包含大写字符或小写字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26478768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com