gpt4 book ai didi

regex - bash:如何检查字符串是否以 '#' 开头?

转载 作者:行者123 更新时间:2023-11-29 08:44:19 25 4
gpt4 key购买 nike

在 bash 中,我需要检查字符串是否以“#”符号开头。我该怎么做?

这是我的看法——

if [[ $line =~ '#*' ]]; then
echo "$line starts with #" ;
fi

我想在一个文件上运行这个脚本,文件看起来像这样 --

03930
#90329
43929
#39839

这是我的脚本——

while read line ; do
if [[ $line =~ '#*' ]]; then
echo "$line starts with #" ;
fi
done < data.in

这是我的预期输出——

#90329 starts with #
#39839 starts with #

但我无法让它工作,知道吗?

最佳答案

不需要正则表达式,一个模式就够了

if [[ $line = \#* ]] ; then
echo "$line starts with #"
fi

或者,您可以使用参数扩展:

if [[ ${line:0:1} = \# ]] ; then
echo "$line starts with #"
fi

关于regex - bash:如何检查字符串是否以 '#' 开头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28514484/

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