Check if string ends with a specified suffix in Julia – endswith() Method

The endswith() is an inbuilt function in julia which is used to return true if the specified string ends with the specified suffix value else return false.

Syntax:
endswith(s::AbstractString, suffix::AbstractString)

Parameters:

  • s::AbstractString: Specified string.
  • suffix::AbstractString: Specified suffix value.

Returns: It returns true if the specified string ends with the specified suffix else return false.

Example 1:




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


Output:

true
true
true

Example 2:




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


Output:

false
false
false