From owner-freebsd-questions Mon Jul 29 14:27:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46EBB37B400 for ; Mon, 29 Jul 2002 14:27:26 -0700 (PDT) Received: from cactus.fi.uba.ar (cactus.fi.uba.ar [157.92.49.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1DBC43E4A for ; Mon, 29 Jul 2002 14:27:24 -0700 (PDT) (envelope-from fgleiser@cactus.fi.uba.ar) Received: from localhost (localhost [127.0.0.1]) by cactus.fi.uba.ar (8.11.6/8.11.6) with ESMTP id g6TLOrJ97313; Mon, 29 Jul 2002 18:24:53 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Mon, 29 Jul 2002 18:24:53 -0300 (ART) From: Fernando Gleiser X-X-Sender: To: "Christopher J. Umina" Cc: FreeBSD Question Mailing List Subject: Re: matching a string In-Reply-To: <20020729165654.R55766-100000@216-164-225-145.c3-0.wth-ubr2.sbo-wth.ma.cable.rcn.com> Message-ID: <20020729182126.S96433-100000@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 29 Jul 2002, Christopher J. Umina wrote: > Hello, > > I'm writing some code to pull screen names out of a log, but I > can't seem to figure out the regular expressions to get it done. If you > want to see the log file it's at: > http://216.164.225.145:81/~uminac/mp3/logs/master > What I've been looking to make the script do is just list the > screen names without the brackets, that's all. For instance: Try this: perl -e 'while (<>) {if ($_=~/\[(.+)\]/) {print $1, "\n" }}' < file Here's the perl script in a more readable form: #!/usr/bin/perl -w while (<>) { if ($_=~/\[(.+)\]/) { print $1, "\n"; } } Fer > > kelzy16 > cc skillet > ccgirl436 > ccgirl436 > meikman99 > bctictac8 > > If anybody can help me out in this I'd appreciate it. > > Thank you, > Christopher J. Umina > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message