文字列中のバックスラッシュの数を数えるには?
私は以下を試しましたが、どれもうまくいきませんでした。文字列中のバックスラッシュ「」の数をカウントする方法
string s = @"\a\a\n\u\u0013((((\a\b\n"; // output must be 8
int count = s.Count(a => a == "\\"); // Operator == cant be applied of type char & string
int count = s.Count(a => a == "\"); // newline in constant
int count = s.Split('\\').Length // it doesnt count
は、私はあなたの質問を閉じるために選択したもののように、ポストのトンをもたらすであろう。次回は*前に質問をお願いします。 –