Created
March 14, 2017 03:01
-
-
Save giseongeom/e82fdbd0eef1b404bf7a7f2453b9af1f to your computer and use it in GitHub Desktop.
List alphabet + number as single string
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
| $a='' | |
| $b='' | |
| [char[]]([char]'a'..[char]'z') | % { [string]$a+=$_ } ; $a | |
| 0..9 | % { [string]$b+=$_ } ; $b | |
| $a + $b | |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
output