mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:40:06 +08:00
833 B
833 B
title | description |
---|---|
data#string API | data#string API provides some besic functions and values for string. |
Available APIs >> data#string
Intro
data#string
API provides some functions to manipulate a string. Here is an example for using this api:
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 |