YuriyGuts.RegexBuilder.RegexBuilder.NonEscapedLiteral C# (CSharp) Method

NonEscapedLiteral() public static method

Generates a simple string literal "as is", without character escaping. This method can be used to render explicit preformatted patterns of the Regex or some rare constructions not supported by RegexBuilder.
public static NonEscapedLiteral ( string value ) : RegexNodeLiteral
value string Node text.
return RegexNodeLiteral
        public static RegexNodeLiteral NonEscapedLiteral(string value)
        {
            return new RegexNodeLiteral(value);
        }

Same methods

RegexBuilder::NonEscapedLiteral ( string value, RegexQuantifier quantifier ) : RegexNodeLiteral