首頁 > 後端開發 > C++ > 主體

如何在 C 中檢查字串前綴並將子字串轉換為整數?

Barbara Streisand
發布: 2024-10-31 01:41:01
原創
171 人瀏覽過

How can I check for string prefixes and convert substrings to integers in C  ?

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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!