X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com Date: Fri, 28 Aug 2015 11:29:12 +0200 (CEST) X-X-Sender: igor2 AT igor2priv To: "Matt Rhys-Roberts (matt DOT rhys-roberts AT envinsci DOT co DOT uk) [via geda-user AT delorie DOT com]" X-Debug: to=geda-user AT delorie DOT com from="gedau AT igor2 DOT repo DOT hu" From: gedau AT igor2 DOT repo DOT hu Subject: Re: [geda-user] when pcb disperse command loses elements In-Reply-To: <55E02536.8020202@envinsci.co.uk> Message-ID: References: <55E02536 DOT 8020202 AT envinsci DOT co DOT uk> User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Fri, 28 Aug 2015, Matt Rhys-Roberts (matt DOT rhys-roberts AT envinsci DOT co DOT uk) [via geda-user AT delorie DOT com] wrote: > Q2) Please can anyone tell me how to select all component designators within > the range 100-199, or 200-299, etc? I'm having difficulty working with the > regex when using 'select by name'. A regex pattern for 100-199 is: 1[0-9][0-9] For 200-299: 2[0-9][0-9] In case you want to deal with resistors only: R1[0-9][0-9] These are the generic regex patterns that; I am not sure how exactly the select dialog box works, tho.