| Home
| Calendar
| Mail Lists
| List Archives
| Desktop SIG
| Hardware Hacking SIG
Wiki | Flickr | PicasaWeb | Video | Maps & Directions | Installfests | Keysignings Linux Cafe | Meeting Notes | Linux Links | About BLU |
> Eugene Gorelik wrote:
> > This is easily doable with perl :
> >
> > open(MYFILE,'/path/to/file');
> > while (<MYFILE>) {
> > chomp;
> > if ( $_ =~ /^(.*)\[ISBN:(.*)\](.*)$/){
> > print "ISBN $2";
> > }
> > }
> >
> > Second (.*) is your ISBN number