Microsoft Visual Basic .NET Programmer's Cookbook
暫譯: Microsoft Visual Basic .NET 程式設計師食譜
Matthew MacDonald
- 出版商: MicroSoft
- 出版日期: 2003-07-02
- 售價: $2,050
- 貴賓價: 9.5 折 $1,948
- 語言: 英文
- 頁數: 800
- 裝訂: Paperback
- ISBN: 073561931X
- ISBN-13: 9780735619319
-
相關分類:
.NET、Visual Basic
已過版
買這商品的人也買了...
-
$980$774 -
$970Introduction to Algorithms, 2/e
-
$880$695 -
$650$514 -
$690$587 -
$420$328 -
$780$741 -
$650$514 -
$590$466 -
$750$585 -
$690$538 -
$420$332 -
$2,050$1,948 -
$720$569 -
$620$490 -
$750$638 -
$560$476 -
$480$379 -
$490$382 -
$780$616 -
$480$379 -
$1,127Interactive Computer Graphics: A Top-Down Approach using OpenGL, 4/e (美國版ISBN:0321321375 )
-
$2,050$1,948 -
$650$507 -
$600$540
商品描述
With a generous helping of code examples, code snippets, and solutions to common
development problems—direct from expert programmers—this guide is the logical
place for intermediate and advanced developers to start building development
projects or learn more about Visual Basic .NET. It uses the “cookbook” technique—providing
code plus instructions on how to use each recipe—so developers can quickly apply
the code to their own projects or simply play around with the ingredients to
learn more about Visual Basic .NET.
Table of Content
Acknowledgments | xv |
Introduction | xvii |
1 Strings and Regular Expressions | 1 |
1.1 Combine Strings | 2 |
1.2 Retrieve a Portion of a String | 4 |
1.3 Create a String Consisting of a Repeated Character | 5 |
1.4 Change the Case of All Characters in a String | 5 |
1.5 Perform Case-Insensitive String Comparisons | 6 |
1.6 Iterate Over All the Characters in a String | 7 |
1.7 Parse a String Into Words | 8 |
1.8 Find All Occurrences of Specific Text in a String | 11 |
1.9 Replace All Occurrences of Specific Text in a String | 13 |
1.10 Pad a String for Fixed-Width Display | 14 |
1.11 Reverse a String | 16 |
1.12 Insert a New Line in a String | 17 |
1.13 Insert a Special Character in a String | 18 |
1.14 Manipulate Strings Quickly with StringBuilder | 19 |
1.15 Convert a String into a Byte Array | 21 |
1.16 Get a String Representation of a Byte Array | 23 |
1.17 Use Common Regular Expressions | 25 |
1.18 Validate Input with a Regular Expression | 29 |
1.19 Find All Occurrences of a Pattern in a String | 30 |
1.20 Replace All Occurrences of a Pattern in a String | 32 |
1.21 Manipulate a Filename | 34 |
1.22 Manipulate a URI | 35 |
1.23 Validate a Credit Card with Luhns Algorithm | 37 |
1.24 Validate an ISBN | 38 |
1.25 Perform a SoundEx String Comparison | 39 |
商品描述(中文翻譯)
充滿開發人員所需的程式碼食譜,這是開始建立開發專案或深入了解 Visual Basic .NET 的邏輯起點。
本指南提供了大量的程式碼範例、程式碼片段以及針對常見開發問題的解決方案,這些都是來自專家程式設計師的直接貢獻,因此對於中級和高級開發人員來說,這是開始建立開發專案或深入了解 Visual Basic .NET 的理想之地。它採用了「食譜」技術——提供程式碼以及如何使用每個食譜的說明——使開發人員能夠快速將程式碼應用於自己的專案,或僅僅是玩弄這些成分以深入了解 Visual Basic .NET。
目錄
致謝
xv
介紹
xvii
1 字串與正規表達式
1
1.1 合併字串
2
1.2 擷取字串的一部分
4
1.3 創建由重複字符組成的字串
5
1.4 更改字串中所有字符的大小寫
5
1.5 執行不區分大小寫的字串比較
6
1.6 遍歷字串中的所有字符
7
1.7 將字串解析為單詞
8
1.8 查找字串中特定文本的所有出現
11
1.9 替換字串中特定文本的所有出現
13
1.10 為固定寬度顯示填充字串
14
1.11 反轉字串
16
1.12 在字串中插入新行
17
1.13 在字串中插入特殊字符
18
1.14 使用 StringBuilder 快速操作字串
19
1.15 將字串轉換為位元組陣列
21
1.16 獲取位元組陣列的字串表示
23
1.17 使用常見的正規表達式
25
1.18 使用正規表達式驗證輸入
29
1.19 查找字串中模式的所有出現
30
1.20 替換字串中模式的所有出現
32
1.21 操作檔案名稱
34
1.22 操作 URI
35
1.23 使用 Luhn 算法驗證信用卡
37
1.24 驗證 ISBN
38
1.25 執行 SoundEx 字串比較
39