I'm trying to replace all margin values with 0. Is there any way to do this? I keep getting screwed up by the fact that the strings don't end consistently: sometimes the end in ";" (easy enough to search for and replace), but sometimes the string ends in "[\s]" or "}". One solution I considered would be to replace all numbers following the colon ("
margin([^:]*): [0-9]+") with a zero ("
margin\1: 0"), but the search gets hung up by the decimal point.
What am I doing wrong... besides everything?