“Тест подстроки Bash” Ответ

Тест подстроки Bash

#!/bin/bash

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

Проверка, существует ли подстроение в струнке

string='Haystack';

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

Тест подстроки 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

Тест подстроки Bash

#!/bin/bash

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

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

Тест подстроки 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

Ответы похожие на “Тест подстроки Bash”

Вопросы похожие на “Тест подстроки Bash”

Больше похожих ответов на “Тест подстроки Bash” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования