Skip to content

Instantly share code, notes, and snippets.

@h3nryza
Created July 17, 2018 17:43
Show Gist options
  • Select an option

  • Save h3nryza/a49dedf74a4d1bd834e0b73298c4ce43 to your computer and use it in GitHub Desktop.

Select an option

Save h3nryza/a49dedf74a4d1bd834e0b73298c4ce43 to your computer and use it in GitHub Desktop.
Powershell The string thing
[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