nuget server logo nuget api documents
↑

API Docs / Microsoft.VisualBasic.Runtime / Regexp

Regexp

Full name Microsoft.VisualBasic.Text.Patterns.Regexp Assembly Microsoft.VisualBasic.Runtime Members 8

01 Syntax

Microsoft.VisualBasic.Text.Patterns.Regexp

02 Methods

NameOverloadsSummary
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

NameOverloadsSummary
Regex 1

04 Members

method op_LessThanOrEqual #
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
NameTypeDescription
patternRegexp

-

text$String

-

method op_BitwiseAnd overload 2 #
op_BitwiseAnd(String, Regexp)

求出目标字符串text和pattern的交集,即使用正则表达式来匹配目标字符串之中的子串

Parameters
NameTypeDescription
text$String

-

patternRegexp

-

method op_BitwiseAnd #
op_BitwiseAnd(Regexp, String)

求出目标字符串text和pattern的交集,即使用正则表达式来匹配目标字符串之中的子串

Parameters
NameTypeDescription
text$Regexp

-

patternString

-

method op_Like overload 2 #
op_Like(String, Regexp)

Target input text is equals to the regex pattern?

Parameters
NameTypeDescription
text$String

-

patternRegexp

-

method op_Like #
op_Like(Regexp, String)

Target input text is equals to the regex pattern?

Parameters
NameTypeDescription
text$Regexp

-

patternString

-

property Regex #
Regex
method ToString #
ToString()
method op_GreaterThanOrEqual #
op_GreaterThanOrEqual(Regexp, String)