“string bash contém” Respostas de código

string bash contém

#!/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 [[ "$STR" =~ .*"$SUB".* ]]; then
  echo "It's there."
fi
Wide-eyed Wren

Respostas semelhantes a “string bash contém”

Perguntas semelhantes a “string bash contém”

Mais respostas relacionadas para “string bash contém” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código