textok
Structure
importtext:lib/text.mq.md
fn · h1main
comment
bind
`t` = [text.str_trim] s= marqdo call
> 打印 内容=`t`bind
`parts` = [text.str_split] s=a,b,c sep=,bind
`j` = [text.str_join] xs=`parts` sep=-call
> 打印 内容=`j`Functions
Variables
-
j texta-b-ca-b-c
-
parts list · 3
# value 1 a 2 b 3 c # value 1 a 2 b 3 c -
t textmarqdomarqdo
Execution
marqdo
a-b-c
Source
--- title: lib/text — strings description: Trim, split, join (code-as-docs pilot) import text:lib/text.mq.md --- # main Import lib/text. Bracket path or classic dotted calls both work. **`t` = [text.str_trim] s=" marqdo "** **打印 内容=`t`** **`parts` = [text.str_split] s="a,b,c" sep=","** **`j` = [text.str_join] xs=`parts` sep="-"** **打印 内容=`j`**
Import lib/text. Bracket path or classic dotted calls both work.