C 中的 ends 函數檢查字串的尾部是否與給定的字串相符。語法:bool ends(const string& str) const;參數:str - 要匹配的字串傳回值:如果字串以給定的字串結尾,則傳回 true,否則傳回 false。
C 中 ends 的意義
ends 是 C 標準函式庫中 string 類別的成員函數。它的作用是檢查字串的尾部是否與給定的字串相符。
語法
<code class="cpp">bool ends(const string& str) const;</code>
參數
#str
:要匹配的字串傳回值
如果字串以給定的字串結尾,則傳回true,否則傳回false。
使用方法
ends 函數可以用來檢查字串是否包含特定的尾部。例如,以下程式碼檢查字串 "hello" 是否以 "lo" 結尾:
<code class="cpp">string str = "hello"; bool isEnding = str.ends("lo");</code>
如果 str 是 "hellolo",則 isEnding 為 true,否則為 false。
與ends_with 的區別
ends 與ends_with 函數類似,但有兩個主要區別:
以上是c++中ends什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!