1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-30 22:37:57 +08:00
SpaceVim/docs/api/data/string.md
2018-07-13 20:35:27 +08:00

32 lines
833 B
Markdown

---
title: "data#string API"
description: "data#string API provides some besic functions and values for string."
---
# [Available APIs](../../) >> data#string
<!-- vim-markdown-toc GFM -->
- [Intro](#intro)
- [functions](#functions)
<!-- vim-markdown-toc -->
## Intro
`data#string` API provides some functions to manipulate a string. Here is an example for using this api:
```vim
let s:STR = SpaceVim#api#import('data#string')
let str1 = ' hello world '
let str2 = s:STR.trim(str1)
echo str1
" then you will see only `hello world`
```
## functions
| name | description |
| ----------- | ------------------------------------------------------------------------ |
| `trim(str)` | remove spaces from the beginning and end of a string, return the resuilt |