我想在数据库行中插入所有css文件的类和id,
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,dl,dt,dd,ol,nav ul,nav li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style:none;margin:0;padding:0;}
.subscribe p{
.txt-rt{text-align:right;}
.pos-relative{position:relative;}
来自订阅p我只想订阅而不是p所以基本上我正在寻找一些正则表达式,它将过滤.
和{
之间的元素或每个类的空格:
.txt-rt{text-align:right;}
我必须在.
和{
以及
.subscribe p{
我必须在.
和空间
答案 0 :(得分:0)
这个正则表达式应该能够在样式表中找到类和id。
[.#]([\w.-]+)
演示:https://regex101.com/r/xB0dZ6/1
它几乎说字符串必须以#
或.
开头,然后包含至少一个字母数字字符,.
,-
或_
您可能需要添加起始锚点或尾随检查.*?{
。和
marque {
width: 2.2px
}
.2px
符合此规则。