作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将给定的输入字符串居中对齐到给定的大小,以便产生的字符串是在输入字符串的两侧(左右)都填充空格的字符串。
我要做的代码:
(defun center-string (string size)
(let* ((padding (/ (- size (length string)) 2))
(lpad (+ (length string) padding))
(lformat (format "%%%ds" lpad))
(rformat (format "%%%ds" (- size))))
(format rformat (format lformat string))))
(center-string "KJF" 10)
=> " KJF "
(center-string "KF" 10)
=> " KF "
(center-string "0123456789" 10)
=> "0123456789"
(center-string "0123456789" 5)
=> "0123456789" ; Notice justifcation is ignored as input string too large.
最佳答案
不,没有现有的emacs lisp例程可以执行您想要的操作。 (通过emacs lisp info和emacs info进行的标准搜索支持此功能)。
关于string - 如何在elisp中将字符串居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1394227/
我是一名优秀的程序员,十分优秀!