From 131054d38e7ea088d60936c7590ade6aec86218f Mon Sep 17 00:00:00 2001 From: ganicke Date: Fri, 31 Jan 2025 13:35:08 -0800 Subject: [PATCH] remove deprecated/add new --- common-docs/reference/string.md | 7 +++++-- common-docs/reference/text.md | 21 ++++++++++++++------- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/common-docs/reference/string.md b/common-docs/reference/string.md index 23815617bd38..4b05ea95f825 100644 --- a/common-docs/reference/string.md +++ b/common-docs/reference/string.md @@ -6,11 +6,13 @@ Functions to combine, split, and search text strings. "".charAt(0) "".compare("") "".substr(0, 0) -parseInt("") +parseFloat("") "".indexOf("") "".includes("") "".split(",") "".isEmpty() +"".charAt(0) +"".charCodeAt(0) ``` ## See also @@ -18,4 +20,5 @@ parseInt("") [char at](/reference/text/char-at), [compare](/reference/text/compare), [substr](/reference/text/substr), [parse float](/reference/text/parse-float), [index of](/reference/text/index-of), [includes](/reference/text/includes), -[split](/reference/text/split), [is empty](/reference/text/is-empty) \ No newline at end of file +[split](/reference/text/split), [is empty](/reference/text/is-empty), +[char-at](/reference/text/char-at), [char-code-at](/reference/text/char-code-at) \ No newline at end of file diff --git a/common-docs/reference/text.md b/common-docs/reference/text.md index 72eee306dc0f..4b05ea95f825 100644 --- a/common-docs/reference/text.md +++ b/common-docs/reference/text.md @@ -3,15 +3,22 @@ Functions to combine, split, and search text strings. ```cards -"".charAt(0); -"".compare(""); -"".substr(0, 0); -parseFloat(""); -parseInt(""); +"".charAt(0) +"".compare("") +"".substr(0, 0) +parseFloat("") +"".indexOf("") +"".includes("") +"".split(",") +"".isEmpty() +"".charAt(0) +"".charCodeAt(0) ``` ## See also [char at](/reference/text/char-at), [compare](/reference/text/compare), -[substr](/reference/text/substr), [parse int](/reference/text/parse-int), -[parse float](/reference/text/parse-float) +[substr](/reference/text/substr), [parse float](/reference/text/parse-float), +[index of](/reference/text/index-of), [includes](/reference/text/includes), +[split](/reference/text/split), [is empty](/reference/text/is-empty), +[char-at](/reference/text/char-at), [char-code-at](/reference/text/char-code-at) \ No newline at end of file