From 753954be868ed78b3e339e8811fd1d29eb2af237 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 2 May 2021 12:42:42 +0300 Subject: Release 0.58.0. --- docs/markdown/snippets/string_replace.md | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 docs/markdown/snippets/string_replace.md (limited to 'docs/markdown/snippets/string_replace.md') diff --git a/docs/markdown/snippets/string_replace.md b/docs/markdown/snippets/string_replace.md deleted file mode 100644 index e88179de6..000000000 --- a/docs/markdown/snippets/string_replace.md +++ /dev/null @@ -1,10 +0,0 @@ -## String `.replace()` - -String objects now have a method called replace for replacing all instances of a -substring in a string with another. - -```meson -s = 'aaabbb' -s = s.replace('aaa', 'bbb') -# 's' is now 'bbbbbb' -``` -- cgit v1.2.3