I am trying to find and replace in notepad++. For example I want to replace
border-radius: 2px 3px 2px;
I am using this code to find:
border-radius: ([^A-Za-z]*);
But my expression only search for this types of code (which have only one radius value):
border-radius:2px;
Please tell me how to find:
border-radius: **** ;