“Teste de substring Bash” Respostas de código

Teste de substring Bash

#!/bin/bash

STR='GNU/Linux is an operating system'
SUB='Linux'
if [[ "$STR" == *"$SUB"* ]]; then
  echo "It's there."
fi
Wide-eyed Wren

Verificando se existe uma substring em uma festa de string

string='Haystack';

if [[ $string =~ "Needle" ]]
then
   echo "It's there!"
fi
Clumsy Coyote

Teste de substring Bash

#!/bin/bash

STR='GNU/Linux is an operating system'
SUB='Linux'

if grep -q "$SUB" <<< "$STR"; then
  echo "It's there"
fi
Wide-eyed Wren

Teste de substring Bash

#!/bin/bash

STR='GNU/Linux is an operating system'
SUB='Linux'

if [[ "$STR" =~ .*"$SUB".* ]]; then
  echo "It's there."
fi
Wide-eyed Wren

Teste de substring Bash

#!/bin/bash

STR='GNU/Linux is an operating system'
SUB='Linux'

case $STR in

  *"$SUB"*)
    echo -n "It's there."
    ;;
esac
Wide-eyed Wren

Respostas semelhantes a “Teste de substring Bash”

Perguntas semelhantes a “Teste de substring Bash”

Mais respostas relacionadas para “Teste de substring Bash” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código