help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

how to find " on string


From: Renato Pontefice
Subject: how to find " on string
Date: Tue, 16 Sep 2014 03:57:15 -0700 (PDT)
User-agent: G2/1.0

ok, with this elisp,

(defun my-working-code ()
  "Some really useful thing."
  (interactive)
  (while (and (not (eobp))
              (search-forward "[-" nil 'move))
    (skip-chars-forward "A-Z")
    (unless (looking-at "-]")
      (message "Problem found, please fix and hit C-M-c to continue")
      (recursive-edit)))) I can find for all I need to search.
I look for many char that I'm looking for.
I've added some char ( (skip-chars-forward "A-Z_\\(0-9\)"))

I would also look for ", but I can't find the char that indicate that. Wich one 
is it?


TIA

Renato


reply via email to

[Prev in Thread] Current Thread [Next in Thread]