Open In App

Replace a substring with another string in Julia – replace() Method

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The replace() is an inbuilt function in julia that is used to replace a word or character with the specified string or character.
 

Syntax: 

replace(s::AbstractString, pattern=>Word; count::Integer)

Parameters: 
 

  • s::AbstractString: Specified string.
  • pattern=>Word: Pattern is searched from the given sentence and then that pattern is replaced with the word.
  • count::Integer: It is a number that is the count of specified pattern available in the sentence.

Returns: It returns a new sentence with replaced words. 
 
Example 1: 

Python




# Julia program to illustrate
# the use of String replace() method
 
# Getting a new sentence with replaced words
println(replace("GFG is a CS portal.", "CS" => "Computer Science"))
println(replace("GeeksforGeeks is a CS portal.", "GeeksforGeeks" => "GFG"))


Output: 
 

Example 2: 

Python




# Julia program to illustrate
# the use of String replace() method
 
# Getting a new sentence with replaced words
println(replace("GFG Geeks.", "GFG" => "GeeksforGeeks", count = 1))
println(replace("GFG Geeks GFG.", "GFG" => "GeeksforGeeks", count = 2))


Output: 
 

 


Last Updated : 23 Feb, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads