Skip to content

Commit

Permalink
remove deprecated/add new
Browse files Browse the repository at this point in the history
  • Loading branch information
ganicke committed Jan 31, 2025
1 parent 3f73057 commit 131054d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
7 changes: 5 additions & 2 deletions common-docs/reference/string.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,19 @@ 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

[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)
[split](/reference/text/split), [is empty](/reference/text/is-empty),
[char-at](/reference/text/char-at), [char-code-at](/reference/text/char-code-at)
21 changes: 14 additions & 7 deletions common-docs/reference/text.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 131054d

Please sign in to comment.