filmov
tv
02 - Regular Expressions ( [^] + * \w \d \s \b )
Показать описание
| VBScript (.vbs) Tutorial
Before we apply regular expressions let's learn how to use them.
This video goes over the items:
Character Classes Matching:
[n-s] = [nopqrs]
[4-7] = [4567]
[^$%#Uy7] = matches everything but these characters after the ^
\d = [0-9]
\D = [^0-9]
\w = [a-zA-Z_0-9]
\W = [^a-zA-Z_0-9]
\s = [ \t\r\n\v\f]
\S = [^ \t\r\n\v\f]
Position Matching:
\b = matches word boundary
\B = matches non-word boundary
Repetition Matching:
? = {0,1}
* = {0, ...}
+ = {1, ...}
Before we apply regular expressions let's learn how to use them.
This video goes over the items:
Character Classes Matching:
[n-s] = [nopqrs]
[4-7] = [4567]
[^$%#Uy7] = matches everything but these characters after the ^
\d = [0-9]
\D = [^0-9]
\w = [a-zA-Z_0-9]
\W = [^a-zA-Z_0-9]
\s = [ \t\r\n\v\f]
\S = [^ \t\r\n\v\f]
Position Matching:
\b = matches word boundary
\B = matches non-word boundary
Repetition Matching:
? = {0,1}
* = {0, ...}
+ = {1, ...}
02 - Regular Expressions ( [^] + * \w \d \s \b )
Learn Regular Expressions (Regex) - Crash Course for Beginners
Regular Expressions - 02 - Search for Text at Beginning of String with match Method
Regular expressions as finite automata
02 Match Literal Strings - Regular Expressions - freeCodeCamp
How Do Regular Expressions Really Work?
Regular Expressions (REGEX) - 02 | Basic pattern and Flags
Avoid Using Regular Expressions!
What is RegEx? | Introduction to Regexes | Regular Expressions and Java Patterns | Geekific
How to Write Regular Expressions Without Going Crazy (Beginners Tutorial)
Regular Expression Tips
Complete Regular Expressions Tutorial! (with exercises for practice)
Regular Expressions - Intro to Computer Science
CS50P - Lecture 7 - Regular Expressions
Conversion of Regular Expression to Finite Automata - Examples (Part 1)
Regular Expressions (RegEx) Tutorial #5 - Repeating Characters
REGEX Tutorial Regular Expressions
[regex_02] re.compile pattern
Regular Expression Examples || Theory of Computation || Automata Theory || FLAT || Design a
02 - Working with Files, Texts, and Regular Expressions
Intro to Regular Expressions
Automata Theory - Regular Expressions
#02 Using regular expressions in PHP | Literal search and modes - Quick programming tutorial
Learn Regular Expressions: Introduction
Комментарии