#1
|
|||
|
|||
Regular expression for Replace in Files
Hi Kinook,
I have a hard time trying to figure out what's wrong with my regex. I am removing lines in AssemblyInfo.cs that matches this regex: Code:
(.*)?\[assembly:(.*)?Assembly(FileVersion|Company|Copyright|InformationalVersion)(.*) Code:
Error expanding macros or script in property Find: (.*)?\<Error parsing script at position 86> BR Lee |
#2
|
|||
|
|||
Nevermind, figured it out myself. An extra [ to [ without removing \.
Code:
(.*)?\[[assembly:(.*)?Assembly(FileVersion|Company|Copyright|InformationalVersion)(.*) |
|
|