Summary: Use Windows PowerShell to determine the letter that a string begins with.
How can I use Windows PowerShell to find if a particular string begins with the letter “s”?
Use the StartsWith method from the string, for example:
PS C:\> "string".StartsWith("S")
False
PS C:\> "string".StartsWith("s")
True
Note The StartsWith method is case sensitive. Therefore “S” does not match the example, but “s” does.