current location: Home > Download > Learning resources > Web page production > VB.NET Strings and Regular Expressions

VB.NET Strings and Regular Expressions
Classify: Learning materials / Web page production | Release time: 2018-01-09 | visits: 2998573 |
Download: 186 |
Latest Downloads
Horror Beat Phase Maker
Himalayan Children
Zebra AI
Supermarket Manager Simulator
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
24 HoursReading Leaderboard
- 1 What’s 192.168.2.1, Login/Change Password, See the Must-Know
- 2 XML's Advantages in RSS: A Technical Deep Dive
- 3 Oracle's Role in the Business World
- 4 Runescape: Dragonwilds - Temple Woods Vault Guide
- 5 NYT Connections Answers And Hints - April 23, 2025 Solution #682
- 6 Fisch Egg Hunt: Where to find all Easter eggs
- 7 Works 100%: Recover FL Studio Files (Unsaved & Deleted) Easily
- 8 How does cloud computing impact the importance of Java's platform independence?
- 9 What role has Java's platform independence played in its widespread adoption?
- 10 How do containerization technologies (like Docker) affect the importance of Java's platform independence?
- 11 Every Upcoming Release For The Pokemon TCG
- 12 What are the key components of the Java Runtime Environment (JRE)?
- 13 What are the differences in virtualization support between Linux and Windows?
- 14 How does MySQL differ from Oracle?
- 15 What are the disadvantages of using MySQL compared to other relational databases?
Latest Tutorials
-
- Go language practical GraphQL
- 3181 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 4515 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2517 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 3230 2024-03-29
Text manipulation exists in almost any application, and handling text properly can improve application performance.
This book introduces VB. NET text processing, such as text storage, text replacement and appending, etc. The book compares the pros, cons, and speed of various text manipulation methods in detail, helping you to easily choose the most appropriate method in your application. This book focuses on using simple language. NET Framework's most important tools for processing strings - regular expressions, and introduces how to build your own expressions for matching and manipulating text. The explanations in this book are practical and vivid, and a large amount of code in the book can be directly used in your applications.
This book is suitable for work. NET developers who want to improve text processing efficiency in their applications.
Table of contents
Chapter 1 How the system processes text
1.1. net framework
1.1.1 Common Language Runtime
1.1.2. net framework class library
1.2 Text is a data type
1.2.1 visual basic. net data type
1.2.2 Characters and character sets
1.2.3 String data type
1.3 Text storage
1.3.1 Cache technology
1.3.2 Built-in
1.3.3 Other methods
1.3.4. net implementation
1.4 String operations
1.4.1 Connection string
1.4.2 Substring
1.4.3 Comparing strings
1.4.4 Data type conversion
1.4.5 Format string
1.5 String usage
.1.5.1 Constructing string
1.5.2 Analyze string
1.6 Internationalization
1.7. net resource file
1.8 Summary
Chapter 2 string and stringbuilder classes
2.1 Learn the tools used in this chapter
2.2 Text construction
2.3 visual basic and. net framework
2.3.1 Index
2.3.2 Null value and empty string
2.4 String class
2.4.1 Built-in string
2.4.2 Build
2.4.3 Assigning a value to a string
2.5 stringbuilder class
2.5.1 Length and capacity
2.5.2 tostring() method
2.6 String operations
2.61 Connection
2.6.2 Substring
2.6.3 Comparing strings
2.6.4 Format
2.7 Use of strings
2.7.1 Create string
2.7.2 Mark
2.7.3 Reverse the order of strings
2.7.4 Insertion, deletion and replacement
2.7.5 Choosing between string and stringbuilder
2.8 Summary
Chapter 3 String Conversion
3.1 tostring() method
3.2 Represent the value as a string
3.3 Represent date and time as string
3.4 Represent other objects as strings
3.5 Use string to represent string
3.6 Represent strings as other types
3.6.1 Convert strings to numbers
3.6.2 Convert string to date and time
3.7 Moving strings between collections and arrays
3.7.1 Array
3.7.2 arraylist object
3.7.3 idictionary object
3.8 Summary
Chapter 4 Internationalization
4.1 unicode
4.2. net framework coding class
4.3 Processing strings
4.3.1 cultureinfo class
4.3.2 Uppercase and lowercase
4.3.3 Situations where culturally sensitive operations are not required
4.3.4 Sorting
4.4 Processing characters
4.4.1 Necessary information about characters
4.4.2 Agent pair
4.4.3 Combining characters
4.5 Formatting unicode string
4.6 Summary
Chapter 5 Regular Expressions
5.1 system. text. regularexpressions
5.2 regex class
5.2.1 regexoptions
5.2.2 Class constructor
5.2.3 ismatch() method
5.2.4 replace() method
5.2.5 split() method
5.3 match and matchcollection classes
5.4 Regex detector example
5.5 Basic regular expression syntax
5.5.1 Match different character classes
5.5.2 Specify matching position
5.5.3 Specify repeated characters
5.5.4 Specify replacement
5.5.5 Special characters
5.6 Summary
Chapter 6 Advanced Concepts of Regular Expressions
6.1 Grouping, replacement and backreferencing
6.1.1 Simple grouping
6.1.2 group and groupcollection classes
6.1.3 Replace
6. i. 4 Backreference
6.1.5 Advanced Group
6.2 Making decisions in regular expressions
6.3 Setting options in regular expressions
6.4 Rules of regular expression engine
6.5 Summary
Chapter 7 Regular Expression Pattern
7.1 Verification characters
7.2 Verification Number
7.2.1 Contains only numbers
7.2.2 Contains only integer numbers
7.2.3 Floating point numbers
7.3 Verification phone number
7.4 Verify zip code
7.5 Verify email address
7.5.1 Verify IP address
7.5.2 Verify domain name
7.5.3 Verify personal address
7.5.4 Verify complete address
7.6 Analyze an smtp log file
7.7 html tag
7.7.1 Clear html
from user input
7.7.2 Extract all html tags
7.7.3 HTML extraction example
7.8 Summary
Appendix a string class
a. 1 Constructor
a. 2 Properties
a. 3 Method
Appendix b stringbuilder class
b. 1 Constructor
b. 2 Properties
b. 3 Method
Appendix c Regular expression syntax
c. 1 Matches the characters
c. 2 Repeating characters
c. 3 Positioning characters
c. 4 grouping characters
c. 5 Decision-making characters
c. 6 Replacement characters
c. 7 Escape sequence
c. 8 option flag
Appendix d Technical support, errata and code download
d. 1 How to download the sample code of this book
d. 2 Errata
d. 3 e-mail support
d. 4 p2p. wrox. com
