当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。