String comparision Operators

V_C1 op V_C2 where op can be:

CO: contain only (E.g.: C1 CO C2) --C1的每一个字符都在C2中

CN: contain Not only(C1 CN C2) --C1的字符可能在C2中,也可能不在C2中

CA: contains any(C1 contains at least one character of C2)

NA: Not any(C1 does not contain any characters of C2)

CS: Contain string(C1 contain C2)  --C1包含字符串C2

NS: No String (C1 does not contain C2) --C1不包含字符串C2

CP: Contains Pattern(C1 matches the pattern of C2) --C1匹配正则表达式C2

NP: No Pattern (C1 does not match the pattern of C2) --C1不匹配正则表达式C2

你可能感兴趣的:(c,正则表达式,String,character)