2010年11月24日水曜日

◆URLエンコード・デコードする

 
001
002
003
004
005

$esc = "[System.Uri]::EscapeDataString"
[System.Uri]::EscapeDataString("Powershellのブログ") | tee -Variable e1
[System.Uri]::EscapeDataString("<h1>Hello World</h1>") | tee -Variable e2
[System.Uri]::UnescapeDataString($e1)
[System.Uri]::UnescapeDataString($e2)

結果

20101124000853

0 件のコメント:

コメントを投稿