This content is part of a third party extension that is not supported by the Cake project.
                        For more information about this extension see 
Cake.FileHelpers.
                            
 
	
		Summary
	
            Finds the first regex match in a textfile.
            
		
	Syntax
	public static string FindRegexMatchInFile(this ICakeContext context, FilePath file, string rxFindPattern, RegexOptions rxOptions)
	Attributes
	
		
			
				
					
						| Type | 
						Description | 
					
				
					
						| CakeMethodAliasAttribute | 
						 | 
					
			
		 
	 	
	Parameters
	
		
			
				
					
						| Name | 
						Type | 
						Description | 
					
				
					
						| context | 
						ICakeContext | 
						The context. | 
					
					
						| file | 
						FilePath | 
						The file. | 
					
					
						| rxFindPattern | 
						string | 
						The regex pattern to search for. | 
					
					
						| rxOptions | 
						RegexOptions | 
						The regex options. | 
					
			
		 
	 	
	Return Value
	
		
			
				
					
						| Type | 
						Description | 
					
				
				
					| string | 
					The first regex match in the file. |