Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
変更する必要があります:
"," ":" "{" "}"
文字列から""
""
私はこれを書きました:
Regex remove = new Regex("\"\"\":\"\"{\"\"}\"]"); remove.Replace(str, "");
しかし、これは私が変更する必要のある値を変更しませんでした。どこでエラーをしましたか?
replace メソッドは、置換された文字列を返します。
試してみてください
Regex remove = new Regex(",|:|\\{|\\}"); str = remove.Replace(str, "");
注: 正規表現は、"" 内の , : { および } を検索します。
編集: ArsenMkrt のおかげで、正規表現文字列を使用してコードを修正しました