“PowerShell Sprawdź koniec ciągu” Kod odpowiedzi

PowerShell Sprawdź koniec ciągu

#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 Sprawdź koniec ciągu

#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

Odpowiedzi podobne do “PowerShell Sprawdź koniec ciągu”

Pytania podobne do “PowerShell Sprawdź koniec ciągu”

Więcej pokrewnych odpowiedzi na “PowerShell Sprawdź koniec ciągu” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu