vote up 4 vote down star

I'm looking for a function which will try to find and return whatever was matched by the regular expression \\(\\S-\\) and probably nil if nothing was found. The search should start from (point) and search to the end of the document.

flag

1 Answer

vote up 6 vote down check

Use re-search-forward and match-string:

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

If you don't want point to move, wrap it in a save-excursion:

(save-excursion
  (when ...
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.