“Bash Vérifiez si la chaîne contient une sous-chaîne” Réponses codées

bash si la sous-chaîne

string='Hi substring' #To check if string has "Mylong" substring do
if [[ $string == *"substring"* ]]; then
  echo "String has substring"
fi
Armandres

Vérifier si une sous-chaîne existe dans une basse de cordes

string='Haystack';

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

Test de sous-chaîne de 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 Vérifiez si la chaîne contient une sous-chaîne

# Example usage:
FULLSTRING='Full string to search'
if [[ $FULLSTRING == *"ll str"* ]]; then
	echo "The substring 'll str' is in the full string."
fi

# Example to check for two substrings:
FULLSTRING='Full string to search'
if [[ $FULLSTRING == *"Full"* && $FULLSTRING == *"to"* ]]; then
	echo "The substrings 'Full' and 'to' are in the full string."
fi

# Note, see the following two links for why [[ ]] is used:
https://serverfault.com/questions/52034/what-is-the-difference-between-double-and-single-square-brackets-in-bash
http://mywiki.wooledge.org/BashFAQ/031
Charles-Alexandre Roy

Test de sous-chaîne de 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

Réponses similaires à “Bash Vérifiez si la chaîne contient une sous-chaîne”

Questions similaires à “Bash Vérifiez si la chaîne contient une sous-chaîne”

Plus de réponses similaires à “Bash Vérifiez si la chaîne contient une sous-chaîne” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code