Created
July 17, 2018 17:43
-
-
Save h3nryza/a49dedf74a4d1bd834e0b73298c4ce43 to your computer and use it in GitHub Desktop.
Powershell The string thing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [string]::Compare($a, $b, $True) | |
| $a.StartsWith("Script") | |
| $a.EndsWith("Script") | |
| $a.ToLower() | |
| $a.ToUpper() | |
| $d.ToLower() | |
| $a.trim() | |
| $a.Replace("Scriptign", "Scripting") | |
| $e.Substring(3,3) | |
| $e.ToCharArray() | |
| $Text -split ',' | |
| $Text.IndexOf('y') | |
| $a.Contains("ript") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment