I need to find the following multi-line text
			catch (Exception error)
			{
				throw new CriticalException(Properties.Strings.*, error);
			}
		}
where the * sign needs to be a wildcard and replace it with
			catch (Exception error)
			{
				throw new CriticalException(string.Format(Properties.Strings.errError, Name), error);
			}
		}
I can't seem to get this to work using the Replace tab in AFR.  How can this be done?  Thanks.
			
			
									
						
										
						multi-line wildcard find and replace
- 
				zootycoonvn
 - Posts: 13
 - Joined: Mon Aug 20, 2007 9:25 am
 
Re: multi-line wildcard find and replace
Up for roman answer