Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.230.158 Times

Php Regexp Tester software
Filter: All | Freeware | Demo
 

Php Regexp Tester

< 1 2 3 4 5 > 
Added: January 13, 2010 | Visits: 691

Regexp::MatchContext Regexp::MatchContext is Perl module to replace (and improve) $MATCH, $PREMATCH, and $POSTMATCH SYNOPSIS use Regexp::MatchContext -vars; $str = m/(?p) d+ /; print "Before: $PREMATCHn"; print "Matched: $MATCHn"; print "After: $POSTMATCHn"; $MATCH = 2 * $MATCH; # substitute into original...



Platforms: *nix

License: Freeware Size: 5.12 KB Download (94): Regexp::MatchContext Download

Added: February 09, 2010 | Visits: 1.115

Regexp::Common::net Regexp::Common::net is a Perl module that provide regexes for IPv4 addresses. SYNOPSIS use Regexp::Common qw /net/; while (<>) { /$RE{net}{IPv4}/ and print "Dotted decimal IP address"; /$RE{net}{IPv4}{hex}/ and print "Dotted hexadecimal IP address"; /$RE{net}{IPv4}{oct}{-sep => :}/ and...





Platforms: *nix

License: Freeware Size: 112.64 KB Download (115): Regexp::Common::net Download

Added: August 13, 2010 | Visits: 830

Regexp::Extended Regexp::Extended is a Perl wrapper that extends the re module with new features. SYNOPSIS use Regexp::Extended qw(:all); # (?<>...): named parameters $date =~ /(? d+)-(? d+)-(? d+)/; if ("2002-10-30" =~ /$date/) { print "The date is : $::year->[0]-$::month->[0]-$::day->[0]n"; }...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (93): Regexp::Extended Download

Added: March 26, 2010 | Visits: 1.839

PHP html2ps PHP html2ps is a PHP equivalent of the popular Perl script by the same name that accurately converts HTML with images, complex tables (including rowspan and colspan), layers and divs, and CSS styles to PostScript. If using a Linux or Unix server which supports exec() and ps2pdf, you may also...


Platforms: *nix

License: Freeware Size: 655.36 KB Download (154): PHP html2ps Download

Added: October 23, 2010 | Visits: 2.086

PHP/Javascript Jigsaw puzzle PHP/Javascript Jigsaw puzzle automatically creates jigsaw puzzles from a folder of images. Whats New in This Release: - javascript libary.


Platforms: *nix

License: Freeware Size: 11.26 KB Download (172): PHP/Javascript Jigsaw puzzle Download

Added: October 23, 2010 | Visits: 1.189

Test::Tester::CaptureRunner Test::Tester::CaptureRunner is a Perl module that provides help testing test modules built with Test::Builder. SYNOPSIS use Test::Tester tests => 6; use Test::MyStyle; check_test( sub { is_mystyle_eq("this", "that", "not eq"); }, { ok => 0, # expect this to fail name => "not eq",...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (93): Test::Tester::CaptureRunner Download

Added: July 16, 2010 | Visits: 1.399

Test::Tester::Capture Test::Tester::Capture is a help testing test modules built with Test::Builder. This is a subclass of Test::Builder that overrides many of the methods so that they dont output anything. It also keeps track of its own set of test results so that you can use Test::Builder based modules to...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (99): Test::Tester::Capture Download

Added: August 17, 2010 | Visits: 1.104

Regexp::Assemble Regexp::Assemble is Perl module to assemble multiple Regular Expressions into a single RE. SYNOPSIS use Regexp::Assemble; my $ra = Regexp::Assemble->new; $ra->add( ab+c ); $ra->add( ab+- ); $ra->add( awd+ ); $ra->add( ad+ ); print $ra->re; # prints a(?:w?d+|b+[-c]) Regexp::Assemble...


Platforms: *nix

License: Freeware Size: 81.92 KB Download (94): Regexp::Assemble Download

Added: September 17, 2010 | Visits: 2.279

Input Filter extension for PHP Input Filter extension for PHP project is an extension for safely dealing with input parameters. It is meant to address this issue by implementing a set of filters and mechanisms that users can use to safely access their input data..


Platforms: *nix

License: Freeware Size: 24.58 KB Download (137): Input Filter extension for PHP Download

Added: August 09, 2010 | Visits: 1.740

PHP Database Interface 1.0 PHP Database Interface is an easy to use PHP database interface meant to give applications universal support across many databases, including several flat file formats. Installation These are just a few notes installation notes regarding DBi and using it with your project txtSQL support...


Platforms: *nix

License: Freeware Size: 33.79 KB Download (109): PHP Database Interface 1.0 Download

Added: August 08, 2010 | Visits: 3.161

Turck MMCache for PHP Turck MMCache is a free open source PHP accelerator, optimizer, encoder and dynamic content cache for PHP. It increases performance of PHP scripts by caching them in compiled state, so that the overhead of compiling is almost completely eliminated. Also it uses some optimizations to speed up...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (142): Turck MMCache for PHP Download

Added: February 21, 2010 | Visits: 1.939

PHP Trouble Ticket PHP Trouble Ticket project provides a centralized means of problem reporting and tracking in multi-user environments (medium to large companies, development groups, etc.). It helps direct problem reports to the responsible administrator(s), keeps track of the status of a problem being worked...


Platforms: *nix

License: Freeware Download (196): PHP Trouble Ticket Download

Added: August 25, 2010 | Visits: 2.599

Easy PHP Upload Easy PHP Upload class (the old name) can be used to upload files with a client browser to a remote webserver location. The features in the first release are: file-extension check, maximum file- size limitation and a flexible error reporting system. The class is extremely easy to use and comes...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (223): Easy PHP Upload Download

Added: February 12, 2010 | Visits: 1.302

EasyEclipse for PHP EasyEclipse for PHP is for PHP development with a database. EasyEclipse for PHP contains the tools needed to start developing PHP code: the PHPEclipse IDE, some database tools, as well as Subclipse providing connectivity to Subversion. This distribution includes the following plugins: Core...


Platforms: *nix

License: Shareware Cost: $0.00 USD Size: 155 MB Download (99): EasyEclipse for PHP Download

Added: April 13, 2010 | Visits: 1.091

Regexp::Common::time Regexp::Common::time Perl module contains date and time regexps. SYNOPSIS use Regexp::Common qw(time); # Piecemeal, Time::Format-like patterns $RE{time}{tf}{-pat => pattern} # Piecemeal, strftime-like patterns $RE{time}{strftime}{-pat => pattern} # Match ISO8601-style date/time...


Platforms: *nix

License: Freeware Size: 35.84 KB Download (94): Regexp::Common::time Download

Added: August 20, 2010 | Visits: 4.934

Picture of the Day PHP Script Picture of the Day PHP Script shows daily changing pictures. Each Web page can contain several pictures. Each picture is taken in random order from its own set of directories. An unlimited number of images and directories may be used. Picture of the Day PHP Script doesnt use a database.. Are your...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (165): Picture of the Day PHP Script Download

Added: July 22, 2010 | Visits: 1.992

PHP WebDAV extension PHP WebDAV extension project allows easy access to remote resources with PHP through the DAV protocol. Installation This extension requires the Neon library and the related header files. Neon can be downloaded from: http://www.webdav.org/neon/ Pre-built packages and ports are already...


Platforms: *nix

License: Freeware Size: 235.52 KB Download (145): PHP WebDAV extension Download

Added: April 23, 2010 | Visits: 1.481

Ansilove/PHP Ansilove/PHP is a set of tools to convert ANSi and artscene related file formats into PNG images, supporting ANSi (.ANS), BiNARY (.BIN), and ADF (.ADF) formats. Ansilove/PHP project includes an all purposes command line converter, along with a library to use on web pages for doing "on the fly"...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (110): Ansilove/PHP Download

Added: November 18, 2010 | Visits: 1.815

Php AMX Php AMX project is a Web management interface for Half-life game servers. It uses MySQL and AMX plugins to communicate with any number of servers. Php AMX is a project that enables HLDS control via php but without rcon control or sockets etc. It uses MySQL server connection for main data...


Platforms: *nix

License: Freeware Size: 522.24 KB Download (118): Php AMX Download

Added: June 19, 2010 | Visits: 1.886

PHP Slideshow PHP SlideShow is a little script that creates a web based slide show with NEXT and BACK buttons to navigate through a list of images. Optional features include multi-directory support and image descriptions. Setup is easy, just put the script into a directory containing your images. Santa...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (148): PHP Slideshow Download

< 1 2 3 4 5 >