RegExp (Constructor)

Summary

Constructs a System.RegExp object with the specified regular expression pattern and flags.

Signatures

Click on a signature to select it and view its documentation.

Usage

public RegExp()

Description

Constructs a System.RegExp object with a default value of /(?:)/.

Examples

Basic Usage
1
2
3
import System;
 
Console.log(new RegExp());

Share

HTML | BBCode | Direct Link