Open In App

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

Last Updated : 26 Mar, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

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("Geeks", "ks"))
println(endswith("GeeksforGeeks", "forGeeks"))
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("Geeks", "Geek"))
println(endswith("GeeksforGeeks", "Geek"))
println(endswith("GFG", "GF"))


Output:

false
false
false

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads