万本电子书0元读

万本电子书0元读

顶部广告

JavaScript Regular Expressions电子书

售       价:¥

2人正在读 | 0人评论 9.8

作       者:Loiane Groner

出  版  社:Packt Publishing

出版时间:2015-05-28

字       数:56.8万

所属分类: 进口书 > 外文原版书 > 电脑/网络

温馨提示:数字商品不支持退换货,不提供源文件,不支持导出打印

为你推荐

  • 读书简介
  • 目录
  • 累计评论(0条)
  • 读书简介
  • 目录
  • 累计评论(0条)
This book is ideal for JavaScript developers and programmers who work with any type of user entry data and want sharpen their skills to become experts.
目录展开

JavaScript Regular Expressions

Table of Contents

JavaScript Regular Expressions

Credits

About the Authors

About the Reviewers

www.PacktPub.com

Support files, eBooks, discount offers, and more

Why subscribe?

Free access for Packt account holders

Preface

What this book covers

What you need for this book

Who this book is for

Conventions

Reader feedback

Customer support

Downloading the example code

Downloading the color images of this book

Errata

Piracy

Questions

1. Getting Started with Regex

It's all about patterns

Analyzing a phone number

Analyzing a simple log file

Analyzing an XML file

Regex in JavaScript

The RegExp constructor

Using pattern flags

Using the rgx.test method

Using the rgx.exec method

The string object and regular expressions

Using the String.replace method

Using the String.search method

Using the String.match method

Building our environment

Handling a submitted form

Resetting matches and errors

Creating a regular expression

Executing RegExp and extracting its matches

Testing our application

Summary

2. The Basics

Defining vague matchers in Regex

Matching a wild card character

Matching digits

Matching alphanumeric chars

Negating alphanumeric chars and digits

Defining ranges in Regex

Defining a range

Matching the dash character

Defining negated ranges

Defining multipliers in Regex

Matching one or more occurrences

Matching zero or one occurrence

Matching zero or more occurrences

Defining custom quantifiers

Matching n or more occurrences

Matching n to m occurrences

Matching alternated options

Creating a Regex for a telephone number

Summary

3. Special Characters

Nonvisual constraints

Matching the beginning and end of an input

Matching word boundaries

Matching nonword boundaries

Matching a whitespace character

Defining nongreedy quantifiers

Matching groups in Regex

Grouping characters together to create a clause

Capture and noncapture groups

Matching non capture groups

Matching lookahead groups

Using a negative lookahead

Summary

4. Regex in Practice

Regular expressions and form validation

Setting up the form

Validating fields

Matching a complete name

Understanding the complete name Regex

Matching an e-mail with Regex

Understanding the e-mail Regex

Matching a Twitter name

Understanding the twitter username Regex

Matching passwords

Matching URLs

Understanding the URL Regex

Manipulating data

Using the String.replace method

Matching a description field

Understanding the description Regex

Explaining a Markdown example

Summary

5. Node.js and Regex

Setting up Node.js

Getting started with our application

Reading a file with Node.js

The anatomy of an Apache log file

Creating the Apache log Regex

Creating a Regex for the time part

Creating a Regex for the request information

Creating a Regex for the status code and object size

Creating a Regex for the referrer and the user agent

Parsing each Apache log row

Creating a JSON object for each row

Display the JSON in a table

Summary

A. JavaScript Regex Cheat Sheet

Character classes

Literals

Character sets

Boundaries

Grouping, alternation, and back reference

Quantifiers

JavaScript regular expressions methods

Index

累计评论(0条) 0个书友正在讨论这本书 发表评论

发表评论

发表评论,分享你的想法吧!

买过这本书的人还买过

读了这本书的人还在读

回顶部