Home › Forums › CSS › Selecting css properties AND curly brackets from CSS file in Komodo Edit › Re: Selecting css properties AND curly brackets from CSS file in Komodo Edit
January 8, 2013 at 10:13 am
#120259
Participant
not quite:
`{` opening curly bracket
`[…]` defines a *character class* (a *group* of characters to match against)
`^` inside a character class, this means *not*
`}` closing curly bracket
(therefore, `^}` means *anything **except** a closing curly bracket*)
`*` means zero or more of the previous
`}` closing curly bracket.
Therefore, you’re searching for an opening curly bracket, followed by zero or more characters that *are not* closing brackets (i.e., the block contents), followed by a closing curly bracket.