-1

I'm trying to run a find/replace on a series of files to remove the width="..." and height="..." definitions in SublimeText 3.

I've tried width="*" height="*" but I'm not getting any luck.

Any suggestions?

Aaron Benjamin
  • 1,291
  • 3
  • 18
  • 27

1 Answers1

3

You're matching " "zero or more" times by preceding it with the * operator. You can either use a non-greedy match in between ".*?" or I'd prefer a negated character class "[^"]*"

hwnd
  • 69,796
  • 4
  • 95
  • 132