當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Julia endswith()用法及代碼示例


這個endswith()是 julia 中的一個內置函數,用於如果指定的字符串以指定的後綴值結尾則返回 true,否則返回 false。

用法:
endswith(s::AbstractString, suffix::AbstractString)

參數:

  • s::抽象字符串:指定的字符串。
  • 後綴::抽象字符串:指定的後綴值。

返回值:如果指定的字符串以指定的後綴結尾,則返回 true,否則返回 false。

範例1:




# Julia program to illustrate 
# the use of String endswith() method
  
# Checking ending part of string with 
# specified suffix value
println(endswith("Geeks", "ks"))
println(endswith("GeeksforGeeks", "forGeeks"))
println(endswith("GFG", "FG"))

輸出:

true
true
true

範例2:


# Julia program to illustrate 
# the use of String endswith() method
  
# Checking ending part of string with 
# specified suffix value
println(endswith("Geeks", "Geek"))
println(endswith("GeeksforGeeks", "Geek"))
println(endswith("GFG", "GF"))

輸出:

false
false
false

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Check if string ends with a specified suffix in Julia – endswith() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。