|
|
| About site: Programming/Languages/Regular Expressions/FAQs, Help, and Tutorials - Regular Expressions Tutorial |
Return to Computers also Computers |
| About site: http://www.regular-expressions.info/ |
Title: Programming/Languages/Regular Expressions/FAQs, Help, and Tutorials - Regular Expressions Tutorial A tutorial and reference for many popular regular expression flavors used by programming languages like Perl, PHP, Java, C# and VB.NET as well as a description of general tools like PowerGREP and Edit |
|
|
|
|
Extended_Data_Solutions Custom system design, development and services for data exchange.
| Global_American,_Inc_ Specializing in industrial computer system integration and components from 386 through Pentium 4.
| browsehere_com Connected via fully redundant T3's and burstable OC-3 circuits, capacity of over 100 T1 lines, connected via UUNET and Sprint.
| Personalized_Avatar_Creation_using_Face_Recognition Describes research on using automatic face recognition techniques to create personalized cyberspace avatars.
| Fmkmf Perl (and shell) script by Hugh Pumphrey to construct a make file for a Fortran 90 program that uses modules.
| CSNet Offers design, hosting, consulting, and marketing services
|
|
| Alexa statistic for http://www.regular-expressions.info/ |
Please visit: http://www.regular-expressions.info/
|
| Related sites for http://www.regular-expressions.info/ |
| Presence_Online Producers of Aptrix, a Domino based e-commerce environment for internet, intranet and extranet solutions. | | Half_Price_Hosting Offers Linux and Windows shared hosting, dedicated servers and reseller program. Located in Kentucky, United States. | | The-Elements Cluster description, links to research, benchmarks, articles, and information for users. | | IDAutomation Distributors of barcode fonts and MICR E-13B and CMC-7 fonts for bank check printing. [Windows, MacOS, Unix] | | Web_Programming_Languages Surveys current and planned languages and interfaces for developing World Wide Web based applications; prefaced by discussion of traits of such languages. | | Xentec Create and convert audio and voice files for computer telephony. | | A_Generic_Non-intrusive_Smart_Pointer_Implementation This article follows through the implementation of a smart pointer class that overcames deficiencies of existing smart pointer implementations. [PDF] (March 13, 2001) | | Apache_Friends_XAMPP XAMPP is an easy to install Apache Distribution for Linux and Windows. The package includes the Apache web server, MySQL, SQLite, PHP, Perl, a FTP-Server and phpMyAdmin. | | Lycoris_com__Redmond_Linux_Corp_ Develops, supports, sells easy to use distribution Desktop/LX, preconfigured for Internet access, office productivity, multimedia, entertainment. Products, support, partners, firm information, press, | | Get_A_Dot Fast domain name registration service. | | OpenMP_\'07 Advanced OpenMP Tutorial. Attached to the ParCo 2007 Conference. September 3, Aachen, Germany. | | LeadCrunch A network focusing on pay per action programs for web site and newsletter owners. | | ZDNet__Mozilla_1_0--it\'s_alive! Report of Mozilla 1.0's release and history of the project. (June 5, 2002) | | Visual_Basic_Thunder VB Source Code, Reviews, Help, Reference, Software and Tutorials. | | Harbor_Lights Design web sites for small businesses. Located in Walterboro, South Carolina, United States. | | Opal_Creations Offers web and graphics design. | | Xitian Provides shared and dedicated hosting, development, site design, and programming. | | CLR_Script Automate common Windows tasks, using a C-like language. | | The_Future_Reinvented_with_Open_Croquet Croquet can be likened to many things, a: multimedia authoring environment, programming system, collaborative, distributed, 3D virtual environment and ultimately, system software for a new kind of mac | | Linux_Forensics User group dedicated to using linux to forensically examine computers. Open to all, topics be related to forensics and log exams. |
|
This is websites2007.org cache of m/ as retrieved on 2008.11.18 websites2007.org's cache is the snapshot that we took of the page as we crawled the web. The page may have changed since that time.
|
Regular-Expressions.info - Regex Tutorial, Examples and Reference - Regexp Patterns TutorialTools & LanguagesExamplesBooks & Reference Easily create and understand regular expressions today. Compose and analyze regex patterns with RegexBuddy's easy-to-grasp regex blocks and intuitive regex tree, instead of or in combination with the traditional regex syntax. Developed by the author of this website, RegexBuddy makes learning and using regular expressions easier than ever. Get your own copy of RegexBuddy now Welcome to Regular-Expressions.infoThe Premier website about Regular ExpressionsA 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 find all text files in a file manager. The regex equivalent is .*\.txt$.But you can do much more with regular expressions. In a text editor like EditPad Pro or a specialized text processing tool like PowerGREP, you could use the regular expression \b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b to search for an email address. Any email address, to be exact. A very similar regular expression (replace the first \b with ^ and the last one with $) can be used by a programmer to check if the user entered a properly formatted email address. In just one line of code, whether that code is written in Perl, PHP, Java, a .NET language or a multitude of other languages.Regular Expression Quick StartIf you just want to get your feet wet with regular expressions, take a look at the one-page regular expression quick start. While you can't learn to efficiently use regular expressions from this brief overview, it's enough to be able to throw together a bunch of simple regular expressions. Each section in the quick start links directly to detailed information in the tutorial.Complete Regular Expression TutorialDo not worry if the above example or the quick start make little sense to you. Any non-trivial regex looks daunting to anybody not familiar with them. But with just a bit of experience, you will soon be able to craft your own regular expressions like you have never done anything else. The free Regular-Expressions.info Tutorial explains everything bit by bit.This tutorial is quite unique because it not only explains the regex syntax, but also describes in detail how the regex engine actually goes about its work. You will learn quite a lot, even if you have already been using regular expressions for some time. This will help you to understand quickly why a particular regex does not do what you initially expected, saving you lots of guesswork and head scratching when writing more complex regexes.Applications & Languages That Support RegexesThere are many software applications and programming languages that support regular expressions. If you are a programmer, you can save yourself lots of time and effort. You can often accomplish with a single regular expression in one or a few lines of code what would otherwise take dozens or hundreds.Not Only for ProgrammersIf you are not a programmer, you use regular expressions in many situations just as well. They will make finding information a lot easier. You can use them in powerful search and replace operations to quickly make changes across large numbers of files. A simple example is gr[ae]y which will find both spellings of the word grey in one operation, instead of two. There are many text editors and search and replace tools with decent regex support.Further ReadingIf you're hungry for more information on regular expressions after reading this website, there are a variety of books on the subject.Make a DonationDid this website just save you a trip to the bookstore? Please make a donation to support this site, and you'll get a lifetime of advertisement-free access to this site! Page URL: http://www.Regular-Expressions.info/index.html Page last updated: 28 August 2007 Site last updated: 15 November 2008 Copyright © 2003-2008 Jan Goyvaerts. All rights reserved. WelcomeQuick StartTutorialTools and LanguagesExamplesBooksReferencePrint PDFAbout This SiteRSS Feed & Blog PowerGREP 3 PowerGREP is probably the most powerful regex-based text processing tool available today. A knowledge worker's Swiss army knife for searching through, extracting information from, and updating piles of files. Use regular expressions to search through large numbers of text and binary files, such as source code, correspondence, server or system logs, reference texts, archives, etc. Quickly find the files you are looking for, or extract the information you need. Look through just a handful of files, or thousands of files and folders. Perform comprehensive text and binary replacement operations for easy maintenance of websites, source code, reports, etc. Preview replacements before modifying files, and stay safe with flexible backup and undo options. Work with plain text files, Unicode files, binary files, files stored in zip archives, and even MS Word documents, Excel spreadsheets and PDF files. Runs on Windows 98, ME, NT4, 2000, XP & Vista. More information Download PowerGREP now |
|
| |
A | tutorial | and | reference | for | many | popular | regular | expression | flavors | used | by | programming | languages | like | Perl, | PHP, | Java, | C# | and | VB.NET | as | well | as | a | description | of | general | tools | like | PowerGREP | and | Edit |
|
http://www.regular-expressions.info/
Regular Expressions Tutorial 2008 November
dvd rental
dvd
A tutorial and reference for many popular regular expression flavors used by programming languages like Perl, PHP, Java, C# and VB.NET as well as a description of general tools like PowerGREP and Edit
Rules
|
© 2008 Internet Explorer 5+ or Netscape 6+
|
|
Recommended Sites: 1.
Arts -
Business -
Computers -
Games -
Health -
Home -
Kids and Teens -
News -
Recreation -
Reference -
Regional -
Science -
Shopping -
Society -
Sports -
World
Miss Gallery
- Top Anime Hentai
- DVD rental by mail
- Mortgage Calculator - Student Loan Consolidation - Equity Release - Credit Cards - Buy Cell Phone Online
|