FlimFlan.ReadableRex.Pattern.NegatedSet C# (CSharp) Method

NegatedSet() public method

Matches any single character not contained within
public NegatedSet ( Pattern innerExpression ) : Pattern
innerExpression Pattern
return Pattern
        public Pattern NegatedSet(Pattern innerExpression)
        {
            _content.AppendFormat("[^{0}]", innerExpression.ToString());
            return this;
        }