質問編集履歴

2

修正

2021/09/11 02:09

投稿

nuh
nuh

スコア15

test CHANGED
File without changes
test CHANGED
File without changes

1

文の修正

2021/09/11 02:09

投稿

nuh
nuh

スコア15

test CHANGED
File without changes
test CHANGED
@@ -5,6 +5,8 @@
5
5
  PowerShellのInvoke-WebRequestでrawcontentを取得した時
6
6
 
7
7
  Select-Stringでエラーが出てしまいます。
8
+
9
+ どうすればいいのでしょうか?またなぜエラーが出るのでしょうか?
8
10
 
9
11
 
10
12
 
@@ -42,11 +44,13 @@
42
44
 
43
45
  いったんファイルに出力すればエラーなく実行できました。
44
46
 
47
+ ```PowerShell
48
+
45
49
  $rawcontent | Out-File "tes.txt"
46
50
 
47
51
  Get-Content "tes.txt" | Select-String -Pattern "^Content-Type:" #②
48
52
 
49
-
53
+ ```
50
54
 
51
55
  ただ、ファイルに出力に使う文字コードを取得するためにSelect-Stringをしたいので
52
56