Showing results for string - Scripting Blog [archived]

Nov 8, 2015
Post comments count0
Post likes count0

PowerTip: Display Numeric ASCII Value of Letter

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to display the numeric ASCII value of a letter. How can I use Windows PowerShell to find the numeric ASCII value associated with a letter? Use [byte] and [char] together. The following example will display the numeric ASCII value of the capital letter A:[byte][char]'A'

Scripting Guy!Windows PowerShellPowerTip
Feb 15, 2014
Post comments count1
Post likes count1

String Formatting in Windows PowerShell

Doctor Scripto
Doctor Scripto

Summary: Learn about using formatted strings in Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, here. Today we have another guest blog by June Blender. To read more of June’s previous posts, see these Hey, Scripting Guy Blog posts. Now, here’s June… I recently had the opportunity to help the Windows Azure and ASP.NET prod...

Scripting Guy!Windows PowerShellscripting techniques