我在Bash中有一个字符串:
string="My string"
如何测试它是否包含另一个字符串?
if [ $string ?? 'foo' ]; then echo "It's there!" fi
??
我的未知运营商在哪里?我是否使用echo grep
?
if echo "$string" | grep 'foo'; then echo "It's there!" fi
这看起来有点笨拙.
如果使用双括号,您也可以在案例陈述之外使用Marcus的答案(*通配符):
string='My long string' if [[ $string == *"My long"* ]]; then echo "It's there!" fi
请注意,针串中的空格需要放在双引号之间,*
通配符应该在外面.
如果您更喜欢正则表达式方法:
string='My string'; if [[ $string =~ "My" ]] then echo "It's there!" fi
我不确定使用if语句,但是你可以使用case语句获得类似的效果:
case "$string" in *foo*) # Do stuff ;; esac
由于已经有很多使用Bash特定功能的答案,因此有一种方法可以在较差的shell(如busybox)下工作:
[ -z "${string##*$reqsubstr*}" ]
在实践中,这可能会给:
string='echo "My string"' for reqsubstr in 'o "M' 'alt' 'str';do if [ -z "${string##*$reqsubstr*}" ] ;then echo "String '$string' contain substring: '$reqsubstr'." else echo "String '$string' don't contain substring: '$reqsubstr'." fi done
这是在bash,dash,ksh和ash(busybox)下测试的,结果总是如下:
String 'echo "My string"' contain substring: 'o "M'.
String 'echo "My string"' don't contain substring: 'alt'.
String 'echo "My string"' contain substring: 'str'.
正如@EeroAaltonen所说,这是一个相同的演示版本,在相同的shell下测试:
myfunc() {
reqsubstr="$1"
shift
string="$@"
if [ -z "${string##*$reqsubstr*}" ] ;then
echo "String '$string' contain substring: '$reqsubstr'.";
else
echo "String '$string' don't contain substring: '$reqsubstr'."
fi
}
然后:
$ myfunc 'o "M' 'echo "My String"'
String 'echo "My String"' contain substring 'o "M'.
$ myfunc 'alt' 'echo "My String"'
String 'echo "My String"' don't contain substring 'alt'.
注意:您必须转义或双重引号和/或双引号:
$ myfunc 'o "M' echo "My String"
String 'echo My String' don't contain substring: 'o "M'.
$ myfunc 'o "M' echo \"My String\"
String 'echo "My String"' contain substring: 'o "M'.
这是在busybox,dash和当然bash下测试的:
stringContain() { [ -z "${2##*$1*}" ]; }
这就是所有人!
那么现在:
$ if stringContain 'o "M3' 'echo "My String"';then echo yes;else echo no;fi
no
$ if stringContain 'o "M' 'echo "My String"';then echo yes;else echo no;fi
yes
...或者,如果提交的字符串可能为空,如@Sjlver指出的那样,该函数将变为:
stringContain() { [ -z "${2##*$1*}" ] && [ -z "$1" -o -n "$2" ]; }
或者按照AdrianGünter的评论建议,避免-o
切换:
stringContain() { [ -z "${2##*$1*}" ] && { [ -z "$1" ] || [ -n "$2" ];};}
使用空字符串:
stringContain() { [ -z "$1" ] || { [ -z "${2##*$1*}" ] && [ -n "$2" ];};}
您应该记住,shell脚本不是一种语言,而是一组命令.你本能地认为这种"语言"要求你遵循if
a [
或a [[
.这两个都只是返回退出状态的命令,指示成功或失败(就像所有其他命令一样).因为这个原因我会使用grep
,而不是[
命令.
做就是了:
if grep -q foo <<<"$string"; then
echo "It's there"
fi
现在您正在考虑if
测试其后面的命令的退出状态(以分号结尾).为什么不重新考虑你正在测试的字符串的来源?
## Instead of this
filetype="$(file -b "$1")"
if grep -q "tar archive" <<<"$filetype"; then
#...
## Simply do this
if file -b "$1" | grep -q "tar archive"; then
#...
该-q
选项使grep不输出任何内容,因为我们只需要返回代码.<<<
使shell扩展下一个单词并将其用作命令的输入,这是本<<
文档的单行版本(我不确定这是标准还是基础).
接受的答案是最好的,但由于有多种方法可以做到这一点,这是另一种解决方案:
if [ "$string" != "${string/foo/}" ]; then echo "It's there!" fi
${var/search/replace}
是$var
第一个search
被替换的实例replace
,如果找到它(它没有改变$var
).如果你试图替换foo
什么,并且字符串已经改变,那么显然foo
是找到了.
所以这个问题有很多有用的解决方案 - 但哪个最快/使用最少的资源?
使用此框架重复测试:
/usr/bin/time bash -c 'a=two;b=onetwothree; x=100000; while [ $x -gt 0 ]; do TEST ; x=$(($x-1)); done'
每次更换TEST:
[[ $b =~ $a ]] 2.92user 0.06system 0:02.99elapsed 99%CPU [ "${b/$a//}" = "$b" ] 3.16user 0.07system 0:03.25elapsed 99%CPU [[ $b == *$a* ]] 1.85user 0.04system 0:01.90elapsed 99%CPU case $b in *$a):;;esac 1.80user 0.02system 0:01.83elapsed 99%CPU doContain $a $b 4.27user 0.11system 0:04.41elapsed 99%CPU
(doContain在F. Houri的回答中)
对于咯咯地笑:
echo $b|grep -q $a 12.68user 30.86system 3:42.40elapsed 19%CPU !ouch!
因此,无论是在扩展测试还是案例中,简单替代选项都可以获得胜利.外壳是便携式的.
管道输出到100000 greps是可以预料的痛苦!关于无需使用外部实用程序的旧规则是正确的.
这也有效:
if printf -- '%s' "$haystack" | egrep -q -- "$needle" then printf "Found needle in haystack" fi
负面测试是:
if ! printf -- '%s' "$haystack" | egrep -q -- "$needle" then echo "Did not find needle in haystack" fi
我想这种风格更经典 - 更少依赖于Bash shell的功能.
该--
参数是纯POSIX偏执狂,用于保护输入字符串类似于选项,例如--abc
或-a
.
注意:在一个紧凑的循环这个代码将是多少比使用内部击壳特征慢,作为一个(或两个)独立的过程将被创建并经由配管连接.
Bash4 +示例.注意:当单词包含空格等时,不使用引号会导致问题.总是引用bash IMO.
以下是BASH4 +的一些示例:
例1,检查字符串中的"是"(不区分大小写):
if [[ "${str,,}" == *"yes"* ]] ;then
例2,检查字符串中的"是"(不区分大小写):
if [[ "$(echo "$str" | tr '[:upper:]' '[:lower:]')" == *"yes"* ]] ;then
例3,检查字符串中的"是"(区分大小写):
if [[ "${str}" == *"yes"* ]] ;then
例4,检查字符串中的"是"(区分大小写):
if [[ "${str}" =~ "yes" ]] ;then
例5,完全匹配(区分大小写):
if [[ "${str}" == "yes" ]] ;then
例6,完全匹配(不区分大小写):
if [[ "${str,,}" == "yes" ]] ;then
例7,完全匹配:
if [ "$a" = "$b" ] ;then
例8,通配符匹配.ext(不区分大小写):
if echo "$a" | egrep -iq "\.(mp[3-4]|txt|css|jpg|png)" ; then
请享用.
这个怎么样:
text="bmnmn " if [[ "$text" =~ "" ]]; then echo "matched" else echo "not matched" fi
保罗在他的表现比较中提到:
if echo "abcdefg" | grep -q "bcdef"; then echo "String contains is true." else echo "String contains is not true." fi
这与POSIX兼容,就像Marcus提供的'case'$ string"in'答案一样,但比case语句答案稍微容易阅读.另请注意,这将比使用case语句慢得多,正如Paul指出的那样,不要在循环中使用它.
此Stack Overflow答案是唯一一个捕获空格和破折号的答案:
# For null cmd arguments checking to_check=' -t' space_n_dash_chars=' -' [[ $to_check == *"$space_n_dash_chars"* ]] && echo found
一个是:
[ $(expr $mystring : ".*${search}.*") -ne 0 ] && echo 'yes' || echo 'no'
[[ $string == *foo* ]] && echo "It's there" || echo "Couldn't find"
我喜欢sed.
substr="foo" nonsub="$(echo "$string" | sed "s/$substr//")" hassub=0 ; [ "$string" != "$nonsub" ] && hassub=1
编辑,逻辑:
使用sed从string中删除子串的实例
如果新字符串与旧字符串不同,则存在子字符串
grep -q
对此有用.
同样使用awk
:
string="unix-bash 2389" character="@" printf '%s' "$string" | awk -vc="$character" '{ if (gsub(c, "")) { print "Found" } else { print "Not Found" } }'
输出:
未找到
string="unix-bash 2389" character="-" printf '%s' "$string" | awk -vc="$character" '{ if (gsub(c, "")) { print "Found" } else { print "Not Found" } }'
输出:
发现
原始来源:http://unstableme.blogspot.com/2008/06/bash-search-letter-in-string-awk.html
我发现经常需要此功能,因此我以这种方式使用自制的shell函数,.bashrc
该函数使我可以按需要多次重复使用它,并且名称易于记忆:
function stringinstring() { case "$2" in *"$1"*) return 0 ;; esac return 1 }
要测试$string1
(比如123abcABC)中是否包含(比如abc)$string2
,我只需要运行并检查返回值,例如stringinstring "$string1" "$string2"
stringinstring "$str1" "$str2" && echo YES || echo NO
我的.bash_profile以及我如何使用grep如果PATH包含我的2个bin目录,请不要附加它们
# .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi U=~/.local.bin:~/bin if ! echo "$PATH" | grep -q "home"; then export PATH=$PATH:${U} fi