我想在数据库行中插入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;}
从subscribe p我只想要subscribe而不是p,所以基本上我正在寻找一些正则表达式,它将过滤
.
和{
之间的元素或每个类中的空格:.txt-rt{text-align:right;}
我必须在
.
和{
之间搜索.subscribe p{
我得在
.
和空格之间搜索 最佳答案
这个regex应该能够在样式表中找到类和id。
[.#]([\w.-]+)
演示:https://regex101.com/r/xB0dZ6/1
它几乎说字符串必须以
#
或.
开头,然后至少包含一个字母数字字符、.
、-
或_
。您可能需要添加一个起始锚定或尾随检查,
.*?{
。就像marque {
width: 2.2px
}
.2px
将与此规则匹配。关于php - 用于CSS类和ID的正则表达式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37499423/