| Title | 
                
                    Test
                    Find
                    
                    Pattern Title
                 | 
            
            
                | Expression | 
                ("[^"]*")|('[^\r]*)(\r\n)?  | 
            
            
                | Description | 
                Will match a VBScript string and/or comment
Ex:
' userinfo
strUsername = "tomsve" 
iAge = 20
' temp
strPassword = "halloj"
...Would result in the following matches:
' userinfo
"tomsve"
' temp
"halloj"
Good luck!
Tom S. [email protected]  | 
            
            
                | Matches | 
                "my string" | "a string with ' in it" | ' comment  | 
            
            
                | Non-Matches | 
                asd "  | 
            
            
                | Author | 
                
                    Rating:
                         
                    Tom Svensson
                 | 
            
            
                | Source | 
                 | 
            
            
              | Your Rating | 
              
                
		       | 
            
        
    
 
    
    
     
        
                
	                Title: An update
	                Name: Torbjörn Hansson
	                Date: 10/2/2006 4:35:54 AM
	                Comment: 
("[^"]*?")|('[^\r\n]*?\r?\n)