“PowerShell Periksa akhir string” Kode Jawaban

PowerShell Periksa akhir 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 Periksa akhir 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

Jawaban yang mirip dengan “PowerShell Periksa akhir string”

Pertanyaan yang mirip dengan “PowerShell Periksa akhir string”

Lebih banyak jawaban terkait untuk “PowerShell Periksa akhir string” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya