“Bash -Überprüfung auf Substring in String” Code-Antworten

Bash If Substring

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

Ü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 If Substring in String

# 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

Bash -Überprüfung auf Substring in String

[[ $haystack =~ "Needle" ]]
Brian Patterson

Ähnliche Antworten wie “Bash -Überprüfung auf Substring in String”

Fragen ähnlich wie “Bash -Überprüfung auf Substring in String”

Weitere verwandte Antworten zu “Bash -Überprüfung auf Substring in String” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen