gpt4 book ai didi

emacs - 用于从正则表达式中查找和返回匹配项的函数

转载 作者:行者123 更新时间:2023-12-05 00:09:12 26 4
gpt4 key购买 nike

我正在寻找一个函数,它将尝试查找并返回正则表达式匹配的任何内容 \\(\\S-\\)如果什么也没找到,可能为零。搜索应从 (point) 开始并搜索到文档的末尾。

最佳答案

使用 re-search-forwardmatch-string :

(when (re-search-forward "\\(\\S-\\)" nil t)
(match-string 1))

如果您不想让点移动,请将其包裹在 save-excursion 中:
(save-excursion
(when ...

关于emacs - 用于从正则表达式中查找和返回匹配项的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/766157/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com