From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Burkhard Schultheis Newsgroups: gmane.emacs.help Subject: regular expression Date: Mon, 25 Jan 2010 12:00:16 +0100 Message-ID: <7s5bu9Fg2iU1@mid.individual.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1264433661 24000 80.91.229.12 (25 Jan 2010 15:34:21 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 25 Jan 2010 15:34:21 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jan 25 16:34:14 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1NZQwj-0001pv-IM for geh-help-gnu-emacs@m.gmane.org; Mon, 25 Jan 2010 16:33:45 +0100 Original-Received: from localhost ([127.0.0.1]:47761 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NZQwk-0004VN-PB for geh-help-gnu-emacs@m.gmane.org; Mon, 25 Jan 2010 10:33:46 -0500 Original-Path: news.stanford.edu!usenet.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 14 Original-X-Trace: individual.net emGYskjX1ncuVEnSLFzC6QR1BLSm8MilzbCLdNbZgO9wh3f2Dt Cancel-Lock: sha1:sjE1vOHkPYUBeaOcvR3pBqci13E= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.1.5) Gecko/20091204 Thunderbird/3.0 Original-Xref: news.stanford.edu gnu.emacs.help:176362 X-Mailman-Approved-At: Mon, 25 Jan 2010 10:33:13 -0500 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:71435 Archived-At: I want to search for the following string: A hyphen not surrounded by spaces. Therefore I tried the following pattern: [^ ]-[^ ]. But this pattern finds a hyphen preceded by a letter and followed by a newline character, too. How to exclude the newline character? I tried [^ ]-[^ \n] but that does not work. Why? And how to search for this? Thank you in advance! Regards Burkhard