Answers for "output text after specific character powershell"

0

output text after specific character powershell

$pos = $name.IndexOf(";")
$leftPart = $name.Substring(0, $pos)
$rightPart = $name.Substring($pos+1)
Posted by: Guest on August-11-2020

Code answers related to "output text after specific character powershell"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language