We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dccf9cf commit ce4b544Copy full SHA for ce4b544
bashrc/oneline_cmd
@@ -118,6 +118,12 @@ printf "%`tput cols`s" | tr ' ' '#'
118
#install django use douban mirror.
119
pip install django --index-url http://pypi.douban.com/simple
120
121
+# (?=exp) pre match
122
+# (?!exp) pre not match
123
+# (?<=exp) post match
124
+# (?<!exp) post not match
125
+# regx (?<=<(\w+)>).*(?=<\/\1>) for html tag
126
+
127
# checks to [192.168.32.208]: host [32.208 xuebao] not found
128
# match [xxx] and [xxx] content.
129
grep -Po '(?<=\[)[^]]+'
0 commit comments