From ruby-talk-admin@ruby-lang.org Fri Dec 16 01:28:20 2005 Received: from kankan.nagaokaut.ac.jp (kankan.nagaokaut.ac.jp [133.44.2.24]) by blade.nagaokaut.ac.jp (8.12.3/8.12.3/Debian-6.6) with ESMTP id jBFGSKZk027715; Fri, 16 Dec 2005 01:28:20 +0900 Received: from funfun.nagaokaut.ac.jp (funfun.nagaokaut.ac.jp [133.44.2.201]) by kankan.nagaokaut.ac.jp (Postfix) with ESMTP id F158E5CB9; Fri, 16 Dec 2005 01:28:21 +0900 (JST) Received: from localhost (localhost.nagaokaut.ac.jp [127.0.0.1]) by funfun.nagaokaut.ac.jp (Postfix) with ESMTP id E5CC9F04899; Fri, 16 Dec 2005 01:28:25 +0900 (JST) Received: from voscc.nagaokaut.ac.jp (voscc.nagaokaut.ac.jp [133.44.1.100]) by funfun.nagaokaut.ac.jp (Postfix) with ESMTP id AE015F04896; Fri, 16 Dec 2005 01:28:24 +0900 (JST) Received: from beryllium.ruby-lang.org (beryllium.ruby-lang.org [210.163.138.100]) by voscc.nagaokaut.ac.jp (Postfix) with ESMTP id 7818A63002C; Fri, 16 Dec 2005 01:28:27 +0900 (JST) Received: from beryllium.ruby-lang.org (beryllium.ruby-lang.org [127.0.0.1]) by beryllium.ruby-lang.org (Postfix) with ESMTP id 3082233D84; Fri, 16 Dec 2005 01:28:22 +0900 (JST) Received: from localhost (beryllium.ruby-lang.org [127.0.0.1]) by beryllium.ruby-lang.org (Postfix) with ESMTP id 1CB8333A44 for ; Fri, 16 Dec 2005 01:28:08 +0900 (JST) Received: from beryllium.ruby-lang.org ([127.0.0.1]) by localhost (beryllium.ruby-lang.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01156-09 for ; Fri, 16 Dec 2005 01:28:07 +0900 (JST) Received: from locke.rydia.net (unknown [69.9.162.140]) by beryllium.ruby-lang.org (Postfix) with ESMTP id B990133C68 for ; Fri, 16 Dec 2005 01:28:07 +0900 (JST) Received: from localhost (celes [10.0.0.2]) by locke.rydia.net (Postfix) with ESMTP id 2CEAA6803A; Thu, 15 Dec 2005 11:28:03 -0500 (EST) Received: from locke.rydia.net ([10.0.0.1]) by localhost (celes [10.0.0.2]) (amavisd-new, port 10024) with LMTP id 11944-01-7; Thu, 15 Dec 2005 11:28:00 -0500 (EST) Received: by locke.rydia.net (Postfix, from userid 65534) id 437CF68030; Thu, 15 Dec 2005 11:28:00 -0500 (EST) Received: from wintws01.northgrum.com (wintws01.northgrum.com [155.104.239.13]) by rydia.net (IMP) with HTTP for ; Thu, 15 Dec 2005 11:28:00 -0500 Delivered-To: ruby-talk@ruby-lang.org Date: Fri, 16 Dec 2005 01:28:08 +0900 Posted: Thu, 15 Dec 2005 11:28:00 -0500 From: mental@rydia.net Reply-To: ruby-talk@ruby-lang.org Subject: Re: regular expressions question To: ruby-talk@ruby-lang.org (ruby-talk ML), james@grayproductions.net Cc: ruby-talk ML Message-Id: <1134664080.43a199902cda7@www.rydia.net> In-Reply-To: <1E7A0585-F57B-4C44-92B4-814C4FEB8A0C@grayproductions.net> References: <1134594056.651873.15620@z14g2000cwz.googlegroups.com> <1134597567.426280.11150@o13g2000cwo.googlegroups.com> <1E7A0585-F57B-4C44-92B4-814C4FEB8A0C@grayproductions.net> X-ML-Name: ruby-talk X-Mail-Count: 63 X-MLServer: fml [fml 4.0.3 release (20011202/4.0.3)]; post only (only members can post) X-ML-Info: If you have a question, send e-mail with the body "help" (without quotes) to the address ruby-talk-ctl@ruby-lang.org; help= User-Agent: Internet Messaging Program (IMP) 3.2.8 X-Original-To: ruby-talk@ruby-lang.org X-Originating-IP: 155.104.239.13 X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at ruby-lang.org X-Spam-Checker-Version: SpamAssassin 3.0.3 (2005-04-27) on beryllium.ruby-lang.org X-Spam-Level: X-Spam-Status: No, score=-6.0 required=7.0 tests=AWL,BAYES_00, CONTENT_TYPE_PRESENT,NO_REAL_NAME,RCVDFRMLOCALIP autolearn=no version=3.0.3 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Precedence: bulk Lines: 17 List-Id: ruby-talk.ruby-lang.org List-Software: fml [fml 4.0.3 release (20011202/4.0.3)] List-Post: List-Owner: List-Help: List-Unsubscribe: X-Virus-Scanned: by AMaViS snapshot-20020531 Quoting James Edward Gray II : > Also, I believe they are thread-local variables are they not? > (I'm honestly asking.) If so, I don't see a lot of concern > about them being stomped on before they are used. They're method-local. def foo "abc" =~ /(a)/ p $1 end foo => "a" p $1 => nil -mental