“Bash -Substring -Test” Code-Antworten

Bash -Substring -Test

#!/bin/bash

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

Überprüfen Sie, ob ein Substring in einer String -Bash existiert

string='Haystack';

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

Bash -Substring -Test

#!/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 -Substring -Test

#!/bin/bash

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

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

Bash -Substring -Test

#!/bin/bash

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

case $STR in

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

Ähnliche Antworten wie “Bash -Substring -Test”

Fragen ähnlich wie “Bash -Substring -Test”

Weitere verwandte Antworten zu “Bash -Substring -Test” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen