Yesterday I have made regexEvaluater1.0.pl public.
It's a perl-Tk script for interactive developing of perl regular
expression. Unlike regexp it hasn't any syntax highlighting but it has
two text areas one before and after applying the expression and it is
fully written in perl. Perl's special variables and return values can be
shown too. It's suitable for incremental script development and can be
used as a tool for filtering text data stepwise.
regexEvaluater was developed on Unix SGI but it was reported that it
will run on Windows 2000 under cygwin too.
The script and a screen shot is available at
http://home.arcor.de/clemens.giegerich/ .
See the online help or the source code for more information.
I would be glad for any comments or suggestions.
Clemens
>try visual regex here is link .. its free
>http://laurent.riesterer.free.fr/regexp/
>
>
>----- Original Message -----
>From: "Kris G Findlay" <[EMAIL PROTECTED]>
>To: "beginners" <[EMAIL PROTECTED]>
>Sent: Thursday, April 11, 2002 11:50 PM
>Subject: Re: RE:regex tester
>
>
>
> ----- Original Message -----
> From: "James Campbell" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, April 11, 2002 5:31 PM
> Subject: RE:regex tester
>
>
> > Hi
> >
> > >Is anybody use any free Regexp tester?
> > >Like in the OptiPerl - but it's non-free... :(
> >
> > Don't know how complicated OptiPerl is but if you just want to see
what
> > your regex is matching:
> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > #!/usr/bin/perl
> > while (<>) {
> >
> > chomp;
> > if (/YOUR_PATTERN_GOES_HERE/) {
> > print "Matched: |$`<$&>$'|\n";
> > }else{
> > print "No match.\n";
> > }
> > }
> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > Will do it. Feed it a text file by typing
> >
> > -=-=-=-=-=-=-=-=-=-=-=-=-
> > #./this_script.pl < test_file
> > -=-=-=-=-=-=-=-=-=-=-=-=-
> > at the command line.
> >
> > Good luck
> > James
> > =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> > James Campbell
> > Research Bioinformatician
> >
> > Proteome Sciences
> > Institute of Psychiatry
> > South Wing Lab
> > PO BOX PO45
> > 16 De Crespigny Park
> > London SE5 8AF
> >
> > Tel: +44-(0)207-848-5111
> > Fax: +44-(0)207-848-5114
> > Email: [EMAIL PROTECTED]
> > Web 1: www.proteome.co.uk (Corporate site)
> > Web 2: www.proteinworks.com (Satellite site - Proteomics facility)
> > =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> >
> > --
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]