Заменяет определённое количество искомых слов в строке
strings:replace, string, string, string, int
Возвращает строку (string) с получившейся строкой
str = "Hello, World!" strings:replace, str, "World", "Humanity", 1 print, returned
# Удаление слова из строки str = "please, delete this word -> test" strings:replace, str, "test", "", 1 print, returned
strings:replace, "hello hello hello", "hello", "test", 2 print, returned