改行だけが必要な場合もあれば、タブも必要な場合もあるため、正規表現の数を減らすのは難しいと思います。1文字、場合によっては2文字を書き戻す必要がある場合があります。しかし、CSSを非常に見栄えよくするための置換のリストを次に示します。
str.replace(/\{/g, " {\n\t") // Line-break and tab after opening {
.replace(/;([^}])/g, ";\n\t$1") // Line-break and tab after every ; except
// for the last one
.replace(/;\}/g, ";\n}\n\n") // Line-break only after the last ; then two
// line-breaks after the }
.replace(/([^\n])\}/g, "$1;\n}") // Line-break before and two after } that
// have not been affected yet
.replace(/,/g, ",\n") // line break after comma
.trim() // remove leading and trailing whitespace
これを作ります:
str = 'body{margin:0;padding:0}section,article,.class{font-size:2em;}'
こんな風に見える:
body {
margin:0;
padding:0;
}
section,
article,
.class {
font-size:2em;
}
省略されたセミコロンが元の場所に戻されることを気にしない場合は、順序を変更することで、これを少し短くすることができます。
str.replace(/\{/g, " {\n\t")
.replace(/\}/g, "\n}\n\n") // 1 \n before and 2 \n after each }
.replace(/;(?!\n)/g, ";\n\t") // \n\t after each ; that was not affected
.replace(/,/g, ",\n")
.trim()