Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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"
}
Source by powershelldaily.wordpress.com #
 
PREVIOUS NEXT
Tagged: #powershell #check #string
ADD COMMENT
Topic
Name
8+2 =