marqdo

textok

stdlib/text.mq.md

Structure

importtext:lib/text.mq.md
fn · h1main
comment

Import lib/text. Bracket path or classic dotted calls both work.

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 text
    a-b-c
  • parts list · 3
    #value
    1a
    2b
    3c
  • t text
    marqdo

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`**

Variable