regular expressions
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 223
JavaScript Regular Expressions guide
Regular expressions are a powerful tool for performing pattern matches in Strings in JavaScript. This is a comprehensive guide and reference on JS regular expressions. more>> Regular expressions are a powerful tool for performing pattern matches in Strings in JavaScript. This is a comprehensive guide and reference on JS regular expressions.<<less
Added: 2006-07-25 License: Freeware Price: $0.00USD
21 downloads
Pattern Matching in Regular Expressions
Regular expressions are all about matching the userâ??s input to the application requirements. Although the system could accept any data without regular expressions, it will not push through since it will never be authenticated. With smart usage of more>> <<less
Added: 2009-05-14 License: Freeware Price: $0.00USD
14 downloads
Using Regular Expressions in JavaScript 1.0
Regular expressions are represented as samples for searching set symbols combinations in text lines (this search refers to comparison to the sample). more>> Regular expressions are represented as samples for searching set symbols combinations in text lines (this search refers to comparison to the sample).<<less
Added: 2007-05-07 License: Free Non-Commercial Price: $0.00USD
16 downloads
K-Pregs (Kai Perl Regular Expressions) 1.00
K-Pregs is a library written in PHP. It comes with a bunch of functions related to Regular Expressions. With this library you no longer need to learn those strange Regular Expressions. With this library you can for example check for valid urls, emails, more>> K-Pregs is a library written in PHP. It comes with a bunch of functions related to Regular Expressions. With this library you no longer need to learn those strange Regular Expressions. With this library you can for example check for valid urls, emails, credit cars such as Visa, Master Card, etc... The library comes with examples. Every single function in this library has one example file to show you how to use that function. You will soon notice that you no longer need to validate anything yourself, let K-Pregs do it for you! A perfect solution to check whether a visitor has sent you correct email, url, etc.<<less
Added: 2006-11-14 License: GPL Price: $0.00USD
12 downloads
Introduction to Regular Expressions with .net 1.0.0
Regular expressions(or regex) are a language used for more sophisticated form and text processing. They are often used to perform complex search-and-replace operations, and to validate that text data is well-formed. Regular expressions can be used to more>> Regular expressions(or regex) are a language used for more sophisticated form and text processing. They are often used to perform complex search-and-replace operations, and to validate that text data is well-formed. Regular expressions can be used to perform all sorts of powerful text processing and manipulation in just about every language and on every platform. Every regular expression either matches text (search) or matches and replaces text (search and replace).<<less
Added: 2009-04-16 License: Freeware Price: $0.00USD
16 downloads
Regular Expressions IP Address Validation with .net 1.0.0
This regular expression will check for valid Internet Protocol (IP) address. Here we are going to search four decimal numbers groups, each separated by a dot. each set contains zero to three digits. Here regular expression check for two group which on more>> This regular expression will check for valid Internet Protocol (IP) address. Here we are going to search four decimal numbers groups, each separated by a dot. each set contains zero to three digits. Here regular expression check for two group which on concatenation generate a valid IP address. First group select from 3 alternatives which will find decimal number range from 0 to 255 ending with .(dot or period), exactly 3 repetitions and Second group select from 3 alternatives which will find decimal number range from 0 to 255.<<less
Added: 2009-04-23 License: Freeware Price: $0.00USD
16 downloads
Validate an email address using regular expressions 1.0.0
email address are the means of communication with people around the world. While processing forms email address validation plays an important. Proper email validation strengthen our contact list, ban spamming and protect us from robot form filling (Form more>> email address are the means of communication with people around the world. While processing forms email address validation plays an important. Proper email validation strengthen our contact list, ban spamming and protect us from robot form filling (Form AutoFill). Here we are going to design a regular expression pattern to validate email address. which will check to make sure an e-mail address is a valid address, and in proper format means containing an username, at sign (@), and valid hostname. For example, admin@samplehost.com is valid, but SPAM@badhost is invalid. Most of email service provides limit the use of literals for email address creation. Only letters (a-z,A-Z), numbers (0-9), hyphens (-), underscore (_) and periods (.) are allowed and no special characters are accepted. You can add or remove any literals to your regular expression.<<less
Added: 2009-05-04 License: Freeware Price: $0.00USD
15 downloads
Matching text with Special meta-characters using Regular Expressions 1.0.0
Regex are more powerful and we want to do more than simply search for literal pieces of text. There are certain reserved meta-characters with Special uses and meaning. These "metacharacters" are: the square bracket [...], the backslash , the caret ^, more>> <<less
Added: 2009-04-20 License: Freeware Price: $0.00USD
15 downloads
Regular Expression Methods
Regular expression or RegEx may look like a simple function in an Ajax or JavaScript based application but itâ??s presence in these forms of applications is very importance since they help in screening the forms of data coming into the application. The more>> <<less
Added: 2009-05-11 License: Freeware Price: $0.00USD
14 downloads
Regular Expression Syntax 1
In this article, we will look at a list of metacharacters. You may create your own pattern using these metacharacters more>> In this article, we will look at a list of metacharacters. You may create your own pattern using these metacharacters<<less
Added: 2004-01-26 License: Freeware Price: $0.00USD
13 downloads
Regular Expression Test Tool
Solmetras Regular Expression Test Tool is a useful resource for programmers looking for a quick and easy way to test their regular expressions. Both PERL and POSIX compatible regexes are supported. The service supports many options including choosing more>> Solmetras Regular Expression Test Tool is a useful resource for programmers looking for a quick and easy way to test their regular expressions. Both PERL and POSIX compatible regexes are supported. The service supports many options including choosing various regex invocation functions, case-sensitivity, flags, replacement data with backreferences.<<less
Added: 2006-05-30 License: Freeware Price: $0.00USD
12 downloads
Regular Expression Tester 1.01
Instantly evaluate regular expressions from your web browser. Enter your expression and data to apply it to, then see the results. Nothing to download and install. Uses PHPs preg_match function. more>> Instantly evaluate regular expressions from your web browser. Enter your expression and data to apply it to, then see the results. Nothing to download and install. Uses PHPs preg_match function.<<less
Added: 2005-07-27 License: Freeware Price: $0.00USD
14 downloads
The Perl Regular Expression Tutor
The interactive tutor allows you to enter your own input and regular expressions and will show you what matches and what not. more>> The interactive tutor allows you to enter your own input and regular expressions and will show you what matches and what not.<<less
Added: 2007-05-24 License: Freeware Price: Free
901 downloads
Regular Expression (RegEx) Editor
Regular Expressions or RegEx?s can be complicated and even seem impossible to create or to configure to do your bidding. Now you can Create, Modify and Test your regular expressions with the WarkenSoft Regular Expression Editor. more>> Regular Expressions or RegEx?s can be complicated and even seem impossible to create or to configure to do your bidding. Now you can Create, Modify and Test your regular expressions with the WarkenSoft Regular Expression Editor.<<less
Added: 2007-06-19 License: Other Price: $0.00USD
29 downloads
PHP regular expression tutorial 1.0
In this article I will show you how to use PHP regular expressions in your own PHP scripts. more>> In this article I will show you how to use PHP regular expressions in your own PHP scripts.<<less
Added: 2007-11-14 License: Freeware Price: $0.00USD
12 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above regular expressions search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed