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.292.462 Times

Regular Expressions software
Filter: All | Freeware | Demo
 

Regular Expressions

1 2 3 4 5 > 
Added: May 10, 2013 | Visits: 834

Parsing binary files with regular expressions This script allows you to use the regular expression engine to parse binary files, especially those for which the struct module alone is inadequate.The typical way to parse binary data in Python is to use the unpack method of the struct module. This works well for fixed-width fields, but...



Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: August 27, 2008 | Visits: 901

SQLRegEx: SQL Server Regular Expressions SQLRegEx adds regular expression capabilities to Microsoft SQL Server 2000. With regular expressions, a person skilled in Transact-SQL can perform a vast number of data manipulation tasks which previously would have required complicated code using T-SQL string functions, or a formal programming...





Platforms: Windows

License: Commercial Cost: $99.00 USD Size: 1.9 MB Download (103): SQLRegEx: SQL Server Regular Expressions Download

Added: September 13, 2013 | Visits: 534

Tags by regular expressions Tags By Regular is the good additinal of TDO Mini Forms Plugin. It was written with this philosophy : best performances, more secured and brings a lot of new functionsInstallation :The Simple Tags can be installed in 3 easy steps:1. Unzip "Tags By Regular" archive and put all files into your...


Platforms: PHP

License: Freeware Size: 10 KB Download (46): Tags by regular expressions Download

Released: January 23, 2023  |  Added: February 07, 2023 | Visits: 4.535

EF Find EF Find is a powerful search program for Windows. Look for files, text, HEX sequences and regular expressions inside 7-Zip, ACE, ARC, ARJ, BZIP2, CAB, CPIO, GZIP, IMG, ISO, LHA, RAR, RPM, SFX, SQX, TAR, TAR.7Z, TAR.BZ, TAR.GZ, TAR.XZ, UDF, WIM, XZ, Z, ZIP, Zip64 and ZOO archives. It works as...


Platforms: Windows, Windows 8, Windows 7, Windows Server

License: Shareware Cost: $14.50 USD Size: 4.45 MB Download (2102): EF Find Download

Released: March 22, 2012  |  Added: April 01, 2012 | Visits: 4.599

RegexBuddy RegexBuddy is your perfect companion for working with regular expressions. Easily create regular expressions that match exactly what you want. Clearly understand complex regexes written by others. Use plain English building blocks instead of or in addition to the standard regex syntax. Work...


Platforms: Windows

License: Shareware Cost: $39.95 USD Size: 9 MB Download (1176): RegexBuddy Download

Released: March 29, 2008  |  Added: April 12, 2008 | Visits: 2.283

Limagito Limagito is a utility to automatically move / copy / delete files that are added to a specific folder. You can set filters based on the file name, rename files and directories (using regular expressions) when moving them to the new destination, create directories based on the file name or date...


Platforms: Windows

License: Freeware Size: 2.89 MB Download (223): Limagito Download

Released: October 30, 2010  |  Added: November 11, 2010 | Visits: 1.580

Limagito Lite Limagito is a utility to automatically move - copy - delete files that are added to a specific folder. You can set filters based on the file name, rename files and directories (using regular expressions) when moving them to the new destination, create directories based on the file name or date...


Platforms: Windows

License: Freeware Size: 7.05 MB Download (130): Limagito Lite Download

Added: August 02, 2008 | Visits: 1.725

Premier Web Site about Regular Expressions Regex Tutorial, Examples and Reference - Regexp Patterns. A regular expression (regex or regexp for short) is a special text string for describing a search pattern. You can think of regular expressions as wildcards on steroids. You are probably familiar with wildcard notations such as *.txt to...


Platforms: Any

License: Freeware Download (490): Premier Web Site about Regular Expressions Download

Added: April 08, 2010 | Visits: 952

Getopt::Declare Getopt::Declare is a Perl module with Declaratively Expressed Command-Line Arguments via Regular Expressions. SYNOPSIS use Getopt::Declare; $args = Getopt::Declare->new($specification_string, $optional_source); # or: use Getopt::Declare $specification_string => $args; Getopt::Declare...


Platforms: *nix

License: Freeware Size: 35.84 KB Download (93): Getopt::Declare Download

Added: August 17, 2010 | Visits: 1.105

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: June 23, 2010 | Visits: 991

Tie::Hash::RegexKeys Tie::Hash::RegexKeys will match hash keys using Regular Expressions. SYNOPSIS use Tie::Hash::RegexKeys; use Data::Dumper; my %h; tie %h, Tie::Hash::RegexKeys; my $a = .1.2.3.4.5.6.2; my $b = .1.2.3.4.5.7; my $c = .1.2.3.4.5.6.1; my $d = .1.2.3.4.5.6.1.6; $h{$a}="key1";...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (104): Tie::Hash::RegexKeys Download

Added: August 21, 2010 | Visits: 839

Regexx Regexx is a complete regular expressions C++ solution. Regexx implements easy expression execution, global searching, replace with atom substitution, customized replaces, easy match/atom string retrieving, and splitting strings with strings or regular expressions.. Get Regexx at...


Platforms: *nix

License: Freeware Size: 419.84 KB Download (94): Regexx Download

Added: June 18, 2010 | Visits: 1.031

Search::Tools::RegExp Search::Tools::RegExp is a Perl module to build regular expressions from search queries. SYNOPSIS my $regexp = Search::Tools::RegExp->new(); my $kw = $regexp->build(the quick brown fox); for my $w ($kw->keywords) { my $r = $kw->re( $w ); # the word itself printf("the word is %sn",...


Platforms: *nix

License: Freeware Size: 49.15 KB Download (102): Search::Tools::RegExp Download

Added: October 11, 2010 | Visits: 1.168

Search::Tools::RegExp::Keywords Search::Tools::RegExp::Keywords is a Perl module to access regular expressions for keywords. SYNOPSIS my $regexp = Search::Tools::RegExp->new(); my $kw = $regexp->build(the quick brown fox); for my $w ($kw->keywords) { my $r = $kw->re( $w ); } Search::Tools::RegExp::Keywords provides...


Platforms: *nix

License: Freeware Size: 49.15 KB Download (92): Search::Tools::RegExp::Keywords Download

Added: May 24, 2010 | Visits: 1.162

ShiftJIS::Regexp ShiftJIS::Regexp contains regular expressions in Shift-JIS. SYNOPSIS use ShiftJIS::Regexp qw(:all); match($string, p{Hiragana}{2}p{Digit}{2}); match($string, pH{2}pD{2}); # these two are equivalent: This module provides some functions to use regular expressions in Shift-JIS on the...


Platforms: *nix

License: Freeware Size: 35.84 KB Download (99): ShiftJIS::Regexp Download

Added: January 12, 2010 | Visits: 1.171

Unicode::Regex::Set Unicode::Regex::Set is a subtraction and intersection of Character Sets in Unicode Regular Expressions. SYNOPSIS use Unicode::Regex::Set qw(parse); $regex = parse([p{Latin} & p{L&} - A-Z]); Perl 5.8.0 misses subtraction and intersection of characters, which is described in Unicode Regular...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (94): Unicode::Regex::Set Download

Released: July 26, 2023  |  Added: August 02, 2023 | Visits: 815

String-O-Matic String-O-Matic performs search and replace operations with multiple strings in multiple files. It was designed specifically for computer programmers working on large projects with many source code files, however any type of file can be used, including HTML. Search and replace operations can...


Platforms: Windows, Windows 7, Windows Server

License: Shareware Cost: $25.00 USD Size: 11.77 MB Download (130): String-O-Matic Download

Released: August 30, 2012  |  Added: September 23, 2012 | Visits: 1.427

Batch RegEx Replace, format, and extract text in multiple files using Regular Expressions. Perform GREP-like tasks including search and replace, RegEx substitutions, data extraction, and more! Built-in RegEx editors support color syntax highlighting and contextual tooltips making it easy to design patterns....


Platforms: Windows

License: Shareware Cost: $39.00 USD Size: 5.27 MB Download (759): Batch RegEx Download

Added: May 10, 2013 | Visits: 560

Kodos Kodos is a Python GUI utility for creating, testing and debugging regular expressions for the Python programming language. Kodos should aid any developer to efficiently and effortlessly develop regular expressions in Python. Since Python's implementation of regular expressions is based on the...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (54): Kodos Download

Added: June 06, 2013 | Visits: 345

RegexpHelper If you write regular expressions in MATLAB, RegexpHelper is the tool for you. RegexpHelper is a simple GUI that gives you immediate feedback on your regular expressions in MATLAB.*Feature requests are welcome.


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): RegexpHelper Download

1 2 3 4 5 >