REPLACE
Description
This function is used to find the substring search in the string str and replace the found content with the replace string. If the replace parameter is not provided, search is replaced with an empty string by default.
Parameter Description
str(string): The original string to be operated on.search(string): The substring to be found and replaced instr.replace(string, optional): The target string used to replace the foundsearchsubstring. If this parameter is not provided, thesearchsubstring is deleted by default.
Return Result
Returns a new string where the search substring in str has been replaced with the replace string, or if the replace parameter is not provided, the search substring is deleted.
Example
- Replace "World" with "Java" in the string "Hello World":
- Delete "100" from the string "100-500":
- Replace all "3" in the string "12345" with "X":
- Replace all hyphens ("-") in the string "data-science" with underscores ("_"):
Through these examples, you can see that the replace function is very flexible and easy to use when handling strings. You can easily replace or remove specific content in a string as needed.
