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.
JSON形式を出力するWeb APIがあります:
{"ret":0}
c++ プログラムは "ret" の値を取得でき、それは INT 型です。
ただし、API を変更すると、次のように出力されます。
{"ret":"0"}
C++ プログラムがエラーを実行します。
「ret」の値が不明な型、おそらく INT または STRING の場合はどうなるでしょうか? c++ で不確かな型の値を処理する方法はありますか?
さまざまなケースに正規表現を使用できます。
入力の周りに「」が2つあるかどうかを確認するようなものです