作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找一个 VimScript 函数,它可以去除字符串前的任何尾随或前导空格。
最佳答案
自 8.0.1630 vim 有 trim()
.
对于旧版本:假设您尝试对 vimscript 中的变量执行此操作,您可以执行以下操作:
let new_var = substitute(var, '^\s*\(.\{-}\)\s*$', '\1', '')
function! Strip(input_string)
return substitute(a:input_string, '^\s*\(.\{-}\)\s*$', '\1', '')
endfunction
let new_var = Strip(var)
关于vim - 是否有与 Ruby 的 strip() 等价的 vimscript(去除前导和尾随空格)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4478891/
我是一名优秀的程序员,十分优秀!