1 / 203
文档名称:

Sams - Teach Yourself Regular Expressions in 10 Minutes - Forta - 2004.pdf

格式:pdf   页数:203
下载后只包含 1 个 PDF 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

Sams - Teach Yourself Regular Expressions in 10 Minutes - Forta - 2004.pdf

上传人:bolee65 2013/12/12 文件大小:0 KB

下载得到文件列表

Sams - Teach Yourself Regular Expressions in 10 Minutes - Forta - 2004.pdf

文档介绍

文档介绍:• Table of Contents
• Index
Sams Teach Yourself Regular Expressions in 10 Minutes
By Ben Forta

Publisher: Sams Publishing
Pub Date: February 28, 2004
ISBN: 0-672-32566-7
Pages:203

RegEx is supported in all major development environments (for use in editing and working with
code) and will thus appeal to anyone using these tools. In addition, every JavaScript developer
should be using RegEx, but most don't as it has never been taught to them properly before.
Developers using ASP, C#, ColdFusion, Java JSP, PHP, Perl, Python, and more can (and should) be
using RegEx, and so every one of them is a potential reader too. The reader of this book will learn
how to:
Match characters sets
Match repeating characters (using minimums and maximums if needed)
Match (or ignore) based on case
Build sub-expressions
Use all of the special characters
Work with excape sequences
Use POSIX classes to plex expressions
Use back-references
Use look-behind operators
Sams Teach Yourself Regular Expressions in 10 Minutes is a tutorial anized into a series of
easy-to-follow 10-minute lessons. These well targeted lessons teach you in 10 minutes what other
books might take hundreds of pages to cover. Instead of dwelling on syntax, terminology, and
arcane examples and scenarios, this book takes a very hands-on approach to solving the needs of
the majority of RegEx users who simply need to manipulate data.
• Table of Contents
• Index
Sams Teach Yourself Regular Expressions in 10 Minutes
By Ben Forta

Publisher: Sams Publishing
Pub Date: December 03, 2003
ISBN: 0-672-32566-7
Pages: 203
Slots:
Copyright
About the Author
Acknowledgments
We Want to Hear from You!
Introduction
Who Is Sams Teach Yourself Regular Expressions For?
Chapter 1. Introducing Regular Expressions
Understanding the Need
How Regular Expressions Are Used
So What Exactly Is a Regular Expression?
Using Regular Expressions
Before You Get Started