C での正確な文字列マッチングと部分文字列変換
C の std::string が指定された文字列で始まるかどうかを確認するには、次のようにします。提供されている Python の例では、検索位置パラメーターを受け入れる rfind オーバーロードを使用します。その方法は次のとおりです。
<code class="cpp">std::string s = "tititoto"; if (s.rfind("titi", 0) == 0) { // pos=0 limits search to the prefix // s starts with the prefix }</code>
C 20 以降では、starts_with メソッドが導入され、プロセスが簡素化されました。
<code class="cpp">std::string s = "tititoto"; if (s.starts_with("titi"s)) { // "s" suffix creates a std::string_view // s starts with the prefix }</code>
次に、int 変換について考えてみましょう。元の Python コードでは、部分文字列はスライス表記 [len('--foo='):] を使用して抽出されます。 C で同じことを実現するには、 substr メソッドを使用します。
<code class="cpp">std::string argv1 = "--foo=98"; std::string foo_value_str = argv1.substr(argv1.find("=") + 1); int foo_value = std::stoi(foo_value_str);</code>
これらの手法を使用すると、C で文字列の接頭辞をチェックし、部分文字列を整数に効率的に変換できます。
以上がC で文字列の接頭辞を確認し、部分文字列を整数に変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。