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