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

Rational Expressions software
Filter: All | Freeware | Demo
 

Rational Expressions

< 1 2 3 4 5 > 
Released: March 22, 2012  |  Added: April 01, 2012 | Visits: 4.603

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.288

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.585

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 27, 2008 | Visits: 903

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: August 02, 2008 | Visits: 1.732

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: October 15, 2010 | Visits: 942

libmatheval GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic expressions input as text. libmatheval supports expressions in any number of variables of arbitrary names, decimal and symbolic constants, basic unary and binary operators, and elementary mathematical...


Platforms: *nix

License: Freeware Size: 512 KB Download (95): libmatheval Download

Added: October 27, 2010 | Visits: 1.340

Language::Basic::Expression Language::Basic::Expression is a Perl package to handle string, numeric, and boolean expressions. SYNOPSIS See Language::Basic for the overview of how the Language::Basic module works. This pod page is more technical. # Given an LB::Token::Group, create an expression I parse it my $exp =...


Platforms: *nix

License: Freeware Size: 52.22 KB Download (100): Language::Basic::Expression Download

Added: April 08, 2010 | Visits: 954

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 25, 2013 | Visits: 922

regexxer regexxer project is a nifty search/replace tool featuring Perl-style regular expressions. It features recursive search through directory trees and Perl-style regular expressions (using libpcre). The user interface is similar to the project-wide search/replace dialog in the Sniff+ IDE, but...


Platforms: *nix

License: Freeware Size: 245.76 KB Download (100): regexxer Download

Added: August 17, 2010 | Visits: 1.109

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: 995

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: 844

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 (95): Regexx Download

Added: June 21, 2010 | Visits: 925

HSH HSH project is designed to let you mix and match shell expressions with Haskell programs. With HSH, it is possible to easily run shell commands, capture their output or provide their input, and pipe them to/from other shell commands and arbitrary Haskell functions at will. Here are a few...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (92): HSH Download

Added: January 16, 2010 | Visits: 774

ocl4java ocl4java project lets you add special Java 5 annotations containing OCL expressions with pre and post conditions and invariants to your code, and have source code to check them inserted automatically either by ant or eclipse. Upon failing an assertion, an AssertionError, exception, log message,...


Platforms: *nix

License: Freeware Size: 27.1 MB Download (91): ocl4java Download

Added: June 18, 2010 | Visits: 1.034

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.172

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 (98): Search::Tools::RegExp::Keywords Download

Added: May 24, 2010 | Visits: 1.165

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.177

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

Added: March 10, 2010 | Visits: 1.228

HTML::Template::Expr HTML::Template::Expr module provides an extension to HTML::Template which allows expressions in the template syntax. HTML::Template::Expr module is purely an addition--all the normal HTML::Template options, syntax, and behaviors will still work. Expression support includes comparisons, math...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (135): HTML::Template::Expr Download

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

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

< 1 2 3 4 5 >