登入帳戶  | 訂單查詢  | 購物車/收銀台(0) | 在線留言板  | 付款方式  | 運費計算  | 聯絡我們  | 幫助中心 |  加入書簽
會員登入   新用戶登記
HOME新書上架暢銷書架好書推介特價區會員書架精選月讀2024年度TOP分類瀏覽雜誌 臺灣用戶
品種:超過100萬種各類書籍/音像和精品,正品正價,放心網購,悭钱省心 服務:香港台灣澳門海外 送貨:速遞郵局服務站

新書上架簡體書 繁體書
暢銷書架簡體書 繁體書
好書推介簡體書 繁體書

八月出版:大陸書 台灣書
七月出版:大陸書 台灣書
六月出版:大陸書 台灣書
五月出版:大陸書 台灣書
四月出版:大陸書 台灣書
三月出版:大陸書 台灣書
二月出版:大陸書 台灣書
一月出版:大陸書 台灣書
12月出版:大陸書 台灣書
11月出版:大陸書 台灣書
十月出版:大陸書 台灣書
九月出版:大陸書 台灣書
八月出版:大陸書 台灣書
七月出版:大陸書 台灣書
六月出版:大陸書 台灣書

『簡體書』正则表达式入门(影印版)

書城自編碼: 2051858
分類:簡體書→大陸圖書→計算機/網絡程序設計
作者: [美]菲茨杰拉德
國際書號(ISBN): 9787564138912
出版社: 东南大学出版社
出版日期: 2013-01-01
版次: 1 印次: 1
頁數/字數: 136/186000
書度/開本: 16开 釘裝: 平装

售價:HK$ 100.7

我要買

share:

** 我創建的書架 **
未登入.



新書推薦:
理想国译丛073——他们也是幸存者:纳粹大屠杀亲历儿童的人生与记忆
《 理想国译丛073——他们也是幸存者:纳粹大屠杀亲历儿童的人生与记忆 》

售價:HK$ 107.8
写作革命2.0:在所有学科和年级中通过写作提升思维的指南(美国亚马逊高分畅销教育类图书)
《 写作革命2.0:在所有学科和年级中通过写作提升思维的指南(美国亚马逊高分畅销教育类图书) 》

售價:HK$ 65.9
大家京范 燕都掌故
《 大家京范 燕都掌故 》

售價:HK$ 96.8
创新无限:深圳奇迹启示录
《 创新无限:深圳奇迹启示录 》

售價:HK$ 75.9
中国近代外交官群体的形成(1861—1911)修订版
《 中国近代外交官群体的形成(1861—1911)修订版 》

售價:HK$ 107.8
大学问·月照崇徽:章献刘后与宋真仁之际政治
《 大学问·月照崇徽:章献刘后与宋真仁之际政治 》

售價:HK$ 107.8
砂与海之歌纪念画集
《 砂与海之歌纪念画集 》

售價:HK$ 107.8
日本第一:对美国的启示(看日本系列)
《 日本第一:对美国的启示(看日本系列) 》

售價:HK$ 61.6

建議一齊購買:

+

HK$ 148.5
《精通 ASP.NET MVC 5》
+

HK$ 146.2
《Android 源码设计模式解析与实战》
+

HK$ 90.7
《.NET框架设计 模式、配置、工具》
+

HK$ 335.4
《HTML5权威指南【迄今为止最全面详实的网页设计参考书】》
+

HK$ 283.2
《Visual Basic开发实战1200例(第Ⅰ卷)(史上最》
內容簡介:
如果你是正则表达式新手,那么《正则表达式入门(影印版)》容易上手的指南就是很好的入门读物。你将在大量实例的帮助下循序渐进地学习相关基础内容,学习通过匹配特定关键字、字符和模式以实现匹配、抽取和转换文本的第一手知识。 來源:香港大書城megBookStore,http://www.megbook.com.hk
正则表达式是程序员的重要工具,在很多Unix工具和Perl、Java、JavaScript、C#等编程语言中会用到。学完《正则表达式入门(影印版)》后,你将熟练掌握正则表达式中最常用的语法,还将领悟灵活运用它们以省时省力的相关技巧。
目錄
Preface
1. What Is a Regular Expression?
Getting Started with Regexpal
Matching a North American Phone Number
Matching Digits with a Character Class
Using a Character Shorthand
Matching Any Character
Capturing Groups and Back References
Using Quantifiers
Quoting Literals
A Sample of Applications
What You Learned in Chapter 1
Technical Notes
2. Simple Pattern Matching
Matching String Literals
Matching Digits
Matching Non-Digits
Matching Word and Non-Word Characters
Matching Whitespace
Matching Any Character, Once Again
Marking Up the Text
Using sed to Mark Up Text
Using Perl to Mark Up Text
What You Learned in Chapter 2
Technical Notes
3.Boundaries
The Beginning and End of a Line
Word and Non-word Boundaries
Other Anchors
Quoting a Group of Characters as Literals
Adding Tags
Adding Tags with sed
Adding Tags with Perl
What You Learned in Chapter 3
Technical Notes
4.Alternation, Groups, and Backreferences
Alternation
Subpatterns
Capturing Groups and Backreferences
Named Groups
Non-Capturing Groups
Atomic Groups
What You Learned in Chapter 4
Technical Notes
5.Character Classes
Negated Character Classes
Union and Difference
POSIX Character Classes
What You Learned in Chapter 5
Technical Notes
6.Matching Unicode and Other Characters
Matching a Unicode Character
Using vim
Matching Characters with Octal Numbers
Matching Unicode Character Properties
Matching Control Characters
What You Learned in Chapter 6
Technical Notes
7. Quantifiers
Greedy, Lazy, and Possessive
Matching with *, +, and ?
Matching a Specific Number of Times
Lazy Quantifiers
Possessive Quantifiers
What You Learned in Chapter 7
Technical Notes
8. Lookarounds
Positive Lookaheads
Negative Lookaheads
Positive Lookbehinds
Negative Lookbehinds
What You Learned in Chapter 8
Technical Notes
9. Marking Up a Document with HTML
Matching Tags
Transforming Plain Text with sed
Substitution with sed
Handling Roman Numerals with sed
Handling a Specific Paragraph with sed
Handling the Lines of the Poem with sed
Appending Tags
Using a Command File with sed
Transforming Plain Text with Perl
Handling Roman Numerals with Perl
Handling a Specific Paragraph with Perl
Handling the Lines of the Poem with Perl
Using a File of Commands with Perl
What You Learned in Chapter 9
Technical Notes
10.The End of the Beginning
Learning More
Notable Tools, Implementations, and Libraries
Perl
PCRE
Ruby (Oniguruma)
Python
RE2
Matching a North American Phone Number
Matching an Email Address
What You Learned in Chapter 10
Appendix: Regular Expression Reference
Regular Expression Glossary
Index

 

 

書城介紹  | 合作申請 | 索要書目  | 新手入門 | 聯絡方式  | 幫助中心 | 找書說明  | 送貨方式 | 付款方式 香港用户  | 台灣用户 | 海外用户
megBook.com.hk
Copyright © 2013 - 2025 (香港)大書城有限公司  All Rights Reserved.