I have a regex puzzle for you all!

A week or so ago, I decided to change the formatting of my Sass file from this:

a {
  color: red;
  text-decoration: none;

  &:hover: {
    color: blue;
    text-decoration: underline;
  }
}

div { ... }

To this:

a {
  color: red;
  text-decoration: none;

  &:hover: {
    color: blue;
    text-decoration: underline; } }

div { ... }

The second syntax seems nice -- it saves you lines and improves readability -- but it is actually a disaster for writing code. Imagine if I wanted to add another line after a:hover's text-decoration: I'd have to bring those two parentheses with me.

Anyway, I've been trying to find the perfect regex to change the formatting back but to no avail.

My thinking:

  1. Match and capture 2 spaces since all closing brackets are indented at least one level: (\s{2})
  2. Match and capture all additional spaces: (\s*)
  3. Match and capture all other characters (my CSS code): (.*)
  4. Match space + closing bracket: }

Replace that with two lines: \1\2\3\n\2}

Doesn't exactly work quite yet. Appreciate any ideas.

link|improve this question

75% accept rate
3  
Obligatory "CSS/SCSS is not a regular language" blabber. – BoltClock Aug 5 '11 at 18:10
Didn't know that. My CS professor would be furious. – Tal Aug 5 '11 at 18:13
1  
Why not use SASS instead of SCSS? It supports all the same features, but has no verbose { } characters -- It's more like Python in that respect, and closer to what your new style resembles – Cameron Aug 5 '11 at 18:23
Have thought of that. Looking into it but would still love a solution for this. – Tal Aug 5 '11 at 19:01
feedback

1 Answer

up vote 3 down vote accepted

Regex won't really work, as you've discovered, because the meaning/desired position depends on the parsing of the Document that has come before.

You need a parser or a filter for this job.

Fortunately, a standard JS beautifier, or a CSS indenter should whip that file right back into shape.


PS: Also consider more frequent backups and version control. (^_^)

link|improve this answer
+1 for version control. Beat me to it. – derekerdmann Aug 5 '11 at 19:16
Of course I'm using version control, but I've been making changes for a week and it could potentially be a pain merging them in with the old syntax and new syntax. – Tal Aug 5 '11 at 20:59
Used Tabifier with C-style. Got it to a manageable enough form for me to work with. Thanks! – Tal Aug 5 '11 at 21:09
You're welcome; Glad you got it squared away! – Brock Adams Aug 5 '11 at 21:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.