Selecting strings and case sensitivity
Posted
by ChiliYago
on Stack Overflow
See other posts from Stack Overflow
or by ChiliYago
Published on 2010-03-12T22:00:41Z
Indexed on
2010/03/12
22:07 UTC
Read the original article
Hit count: 280
powershell
I am trying to filter for an object that has a Title field and I want to ignore case. Is there a way to make sure case sensitivity of turned off?
| Where-Object {$_.Title -like "myString"}
© Stack Overflow or respective owner