From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thorsten Jolitz Newsgroups: gmane.emacs.help Subject: Re: regexp on emacs how to... Date: Sun, 31 Aug 2014 00:17:05 +0200 Message-ID: <87wq9p62se.fsf@gmail.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1409437074 23001 80.91.229.3 (30 Aug 2014 22:17:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 30 Aug 2014 22:17:54 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Aug 31 00:17:44 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XNqxr-0002AI-MG for geh-help-gnu-emacs@m.gmane.org; Sun, 31 Aug 2014 00:17:43 +0200 Original-Received: from localhost ([::1]:47930 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNqxr-0005rI-43 for geh-help-gnu-emacs@m.gmane.org; Sat, 30 Aug 2014 18:17:43 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60688) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNqxZ-0005qv-IQ for help-gnu-emacs@gnu.org; Sat, 30 Aug 2014 18:17:33 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XNqxS-0007dd-1s for help-gnu-emacs@gnu.org; Sat, 30 Aug 2014 18:17:25 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:33063) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNqxR-0007dZ-Ra for help-gnu-emacs@gnu.org; Sat, 30 Aug 2014 18:17:17 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XNqxR-0001pO-8l for help-gnu-emacs@gnu.org; Sun, 31 Aug 2014 00:17:17 +0200 Original-Received: from e178062046.adsl.alicedsl.de ([85.178.62.46]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 31 Aug 2014 00:17:17 +0200 Original-Received: from tjolitz by e178062046.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 31 Aug 2014 00:17:17 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 35 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: e178062046.adsl.alicedsl.de User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) Cancel-Lock: sha1:2TOmcbHCmCZZYWe/EjkuzbGahWI= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:99542 Archived-At: renato.pontefice@gmail.com writes: > Hi, > I need a regexp, that can help me, on a particular need. > > I have a file in .rtf format. > Inside it, with emacs, i insert some code. > > All the code that I insert, start with [- and ends with -] > > betwwen this two tags I have capital letters, without space and line > breack. > > I would have a regexp that show me any occurence of this tag, where i.e.: > - there are open tag [- > - name of variable [-VARIABLENAME > but the close tag -] are after a line break > > and i.e. > - start tag [- > - some char of variable (written in capital letters) [-VARIABLE > - but before the end tag, some non capital letter (that is .rtf code) > [-VARIABLE\rtf\ql\lind34}NAME-] > > I hope I have well explained. (if not, ask me more clarifications) > > is it possible? This might give some false positives, but not miss any tags: "\\[-[^^\000]+?-]" -- cheers, Thorsten