Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

powershell check end of string

#Program to check if string "ing" exists in the string
$str="checking1234"
if ( $str.contains("ing") )
{
echo "String $str contains - [ing]"
}
Source by powershelldaily.wordpress.com #
 
PREVIOUS NEXT
Tagged: #powershell #check #string
ADD COMMENT
Topic
Name
4+7 =