Closed
Description
Consider this example
[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
float: right;
}
the code doesn't take the "," as end of rule and therefor transform it as well.
I'm kindda new to Regex but I came up with this solution for now :
lookAheadNotLetterPattern = '(?![a-zA-Z]|[\\,])'