우선순위1 [ Python ] 정규표현식 Table 및 우선순위 Special characters \ escape special characters . matches any character ^ matches beginning of string $ matches end of string [5b-d] matches any chars '5', 'b', 'c' or 'd' [^a-c6] matches any char except 'a', 'b', 'c' or '6' R|S matches either regex R or regex S () creates a capture group and indicates precedence Quantifiers * 0 or more (append ? for non-greedy) + 1 or more (append ? for non-gree.. 2022. 11. 1. 이전 1 다음