UNPKG

pxt-core

Version:

Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors

21 lines (17 loc) 499 B
# Text Functions to combine, split, and search text strings. ```cards "".charAt(0) "".compare("") "".substr(0, 0) parseInt("") "".indexOf("") "".includes("") "".split(",") "".isEmpty() ``` ## 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)