From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nicolas Richard Newsgroups: gmane.emacs.help Subject: Re: How to translate `rx' expressions to `rx-to-string'? Date: Thu, 31 Jul 2014 17:07:20 +0200 Message-ID: <87d2cly3br.fsf@geodiff-mac3.ulb.ac.be> References: <87zjfp8uh3.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1406819173 16284 80.91.229.3 (31 Jul 2014 15:06:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 31 Jul 2014 15:06:13 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Thorsten Jolitz Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jul 31 17:06:06 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 1XCrvf-0000I8-C5 for geh-help-gnu-emacs@m.gmane.org; Thu, 31 Jul 2014 17:06:03 +0200 Original-Received: from localhost ([::1]:57163 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XCrve-0002hp-Sh for geh-help-gnu-emacs@m.gmane.org; Thu, 31 Jul 2014 11:06:02 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:47174) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XCrv6-0002Su-5d for help-gnu-emacs@gnu.org; Thu, 31 Jul 2014 11:05:36 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XCruy-000091-9J for help-gnu-emacs@gnu.org; Thu, 31 Jul 2014 11:05:27 -0400 Original-Received: from mxin.ulb.ac.be ([164.15.128.112]:14484) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XCruy-00008o-3W for help-gnu-emacs@gnu.org; Thu, 31 Jul 2014 11:05:20 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AjYFALFa2lOkD4Xx/2dsb2JhbABZhDevVAEBAQEBAQaBD6IMAYEcd4QEAQV5EAsOEyUPAQQNPBOILQEDEadzjX4BSg2HDheFfIIihQGCLQeESgEEjmWKeokLhyiGJYNLOy8 Original-Received: from mathsrv4.ulb.ac.be (HELO geodiff-mac3.ulb.ac.be) ([164.15.133.241]) by smtp.ulb.ac.be with ESMTP; 31 Jul 2014 17:05:19 +0200 In-Reply-To: <87zjfp8uh3.fsf@gmail.com> (Thorsten Jolitz's message of "Thu, 31 Jul 2014 16:37:44 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.92 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 164.15.128.112 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:99030 Archived-At: Thorsten Jolitz writes: > Seems I did not get the syntax for function rx-to-string yet - any hints > would be welcome. Read the code of rx. (format "%S" (rx bol "foo_" (+ word) eol)) => "\"^foo_[[:word:]]+$\"" (format "%S" (rx-to-string '(and bol "foo_" (+ word) eol) t)) => "\"^foo_[[:word:]]+$\"" HTH, -- Nico.