“PowerShell Verifique o final da corda” Respostas de código

PowerShell Verifique o final da corda

#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 Verifique o final da corda

#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

Respostas semelhantes a “PowerShell Verifique o final da corda”

Perguntas semelhantes a “PowerShell Verifique o final da corda”

Mais respostas relacionadas para “PowerShell Verifique o final da corda” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código