好的,我有這種情況,逗號在括號內,我想匹配只在括號外的逗號。正則表達式僅匹配逗號,但不包含在多個括號內
Input : color-stop(50%,rgb(0,0,0)), color-stop(51%,rgb(0,0,0)), color-stop(100%,rgb(0,0,0)))
Output(i'm looking for):color-stop(50%,rgb(0,0,0))**,** color-stop(51%,rgb(0,0,0))**,** color-stop(100%,rgb(0,0,0)))
這是我的正則表達式: -
/(?![^(]*\)),/g
不幸的是,它並沒有當有多個括號:(
使用CSS解析器,而不是! – Ryan 2014-10-04 18:43:44