4
我正在尋找一個函數,它將嘗試查找並返回正則表達式\\(\\S-\\)
匹配的任何內容,如果沒有找到任何內容,則可能爲零。搜索應從(point)
開始並搜索到文檔的末尾。從正則表達式查找和返回匹配函數
我正在尋找一個函數,它將嘗試查找並返回正則表達式\\(\\S-\\)
匹配的任何內容,如果沒有找到任何內容,則可能爲零。搜索應從(point)
開始並搜索到文檔的末尾。從正則表達式查找和返回匹配函數
使用re-search-forward
和match-string
:
(when (re-search-forward "\\(\\S-\\)" nil t)
(match-string 1))
如果你不想點動,把它包在一個save-excursion
:
(save-excursion
(when ...