“PowerShell Check End of String” Réponses codées

PowerShell Check End of String

#Program to check if string 1234 comes at the end of the string
$str="checking1234"
if ( $str.endswith("1234") )
{
echo "String $str ends with 1234"
}
Careful Chamois

PowerShell Check End of String

#Program to check if string "check" comes at the begining of the string
 $str="checking1234"
 if ( $str.startswith("check") )
 {
 echo "String $str starts with check"
 }
Careful Chamois

Réponses similaires à “PowerShell Check End of String”

Questions similaires à “PowerShell Check End of String”

Plus de réponses similaires à “PowerShell Check End of String” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code