Open In App

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

Last Updated : 26 Mar, 2020
Comments
Improve
Suggest changes
Like Article
Like
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: Python
# 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: Python
# 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

Next Article
Article Tags :

Similar Reads