摘要:
?匹配零次或一次前面的分组。 匹配零次或多次前面的分组。 +匹配一次或多次前面的分组。 {n}匹配 n 次前面的分组。 {n,}匹配 n 次或更多前面的分组。 {,m}匹配零次到 m 次前面的分组。 {n,m}匹配至少 n 次、至多 m 次前面的分组。 {n,m}?或 ?或+?对前面的分组进行非贪心 阅读全文
摘要:
sudo apt get install xsel sudo apt get install xclip pip install gtk to install the gtk Python module. pip install PyQt4 to install the PyQt4 Python m 阅读全文