Regexp
01 Syntax
Microsoft.VisualBasic.Text.Patterns.Regexp
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| op_LessThanOrEqual | 1 | Grep target input text by a specific regex pattern. |
| op_BitwiseAnd | 2 | 求出目标字符串text和pattern的交集,即使用正则表达式来匹配目标字符串之中的子串 |
| op_Like | 2 | Target input text is equals to the regex pattern? |
| ToString | 1 | |
| op_GreaterThanOrEqual | 1 |
03 Properties
| Name | Overloads | Summary |
|---|---|---|
| Regex | 1 |
04 Members
op_LessThanOrEqual(Regexp,
String)Grep target input text by a specific regex pattern. Match all of the sub string in target text that matched the input regex pattern. (即从目标字符串之中匹配出所有符合目标模式的字符串)
Parameters
| Name | Type | Description |
|---|---|---|
pattern | Regexp | - |
text$ | String | - |
op_BitwiseAnd(
String, Regexp)求出目标字符串text和pattern的交集,即使用正则表达式来匹配目标字符串之中的子串
Parameters
| Name | Type | Description |
|---|---|---|
text$ | String | - |
pattern | Regexp | - |
op_BitwiseAnd(Regexp,
String)求出目标字符串text和pattern的交集,即使用正则表达式来匹配目标字符串之中的子串
Parameters
| Name | Type | Description |
|---|---|---|
text$ | Regexp | - |
pattern | String | - |
op_Like(
String, Regexp)Target input text is equals to the regex pattern?
Parameters
| Name | Type | Description |
|---|---|---|
text$ | String | - |
pattern | Regexp | - |
op_Like(Regexp,
String)Target input text is equals to the regex pattern?
Parameters
| Name | Type | Description |
|---|---|---|
text$ | Regexp | - |
pattern | String | - |
Regex
ToString()
op_GreaterThanOrEqual(Regexp,
String)