반응형
Powershell 에서 다음과 같이 char에 대한 ascii 값을 확인 할 수 있습니다.
PS C:\Users\kdjang> [byte][char]'a'
97
PS C:\Users\kdjang> [byte][char]'z'
122
PS C:\Users\kdjang> [byte][char]'A'
65
PS C:\Users\kdjang> [byte][char]'Z'
90
위 값을 사용하면
a~z, A~Z 에 대란 리스트를 간단하게 만들 수 있겠죠~
$UpperAlph=@()
65..90|foreach-object{$UpperAlph+=[char]$_}
$UpperAlph
$LowerAlph=@()
97..122|foreach-object{$LowerAlph+=[char]$_}
$LowerAlph
반응형
'programming language > powershell' 카테고리의 다른 글
Powershell utf8 with/without BOM 파일 저장 (0) | 2017.07.27 |
---|---|
Powershell v5.0 설치 (0) | 2017.02.19 |
Powershell 지난 주 이전의 파일 지우기 (0) | 2017.02.18 |
Powershell 사용하여 Symbolic link 를 만드는 방법 (0) | 2017.02.10 |
Powershell 빈폴더 삭제 script (0) | 2016.10.17 |
Powershell 에서 Outlook 으로 메일 보내기 (0) | 2016.03.06 |
Powershell 를 활용한 Network Drive 찾기 (0) | 2016.02.16 |
Powershell 매월 X 째 주 Y요일 찾기 (0) | 2016.01.19 |
댓글