DebugConvert.RegexpToString(String, Boolean, Boolean, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts the specified regular expression information to a String.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
virtual System::String ^ RegexpToString(System::String ^ source, bool ignoreCase, bool global, bool multiline);
public string RegexpToString (string source, bool ignoreCase, bool global, bool multiline);
abstract member RegexpToString : string * bool * bool * bool -> string
override this.RegexpToString : string * bool * bool * bool -> string
Public Function RegexpToString (source As String, ignoreCase As Boolean, global As Boolean, multiline As Boolean) As String
Parameters
- source
- String
The regular expression pattern to match.
- ignoreCase
- Boolean
true
to use case-insensitive matching; otherwise, false
.
- global
- Boolean
true
to use a global match; otherwise, false
.
- multiline
- Boolean
true
to use a multiline match; otherwise, false
.
Returns
The string representation of the regular expression information.