“bash si élément dans le tableau” Réponses codées

bash si élément dans le tableau

# Basic syntax:
if [[ "${array[*]}" =~ "${value}" ]]; then
    echo "$value is in array"
fi
# Note, relative to e.g. Python, this syntax feels a little backwards. It
#	checks if the value variable is in the array, which reads right to left.
# Note, if you want to check whether the element is not in the array, use:
if [[ ! "${array[*]}" =~ "${value}" ]]; then
    echo "$value is not in array"
fi
Charles-Alexandre Roy

Vérifiez si un tableau bash contient une valeur

if [[ " ${array[*]} " =~ " ${value} " ]]; then
    # whatever you want to do when array contains value
fi

if [[ ! " ${array[*]} " =~ " ${value} " ]]; then
    # whatever you want to do when array doesn't contain value
fi
Hutch Polecat

Réponses similaires à “bash si élément dans le tableau”

Questions similaires à “bash si élément dans le tableau”

Plus de réponses similaires à “bash si élément dans le tableau” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code