Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
HI,
I have a use case where I have to search for a string "INC TYPE" and extract the values after the particular string.The string can be anywhere in the description. Please find example
complete desc:
Simulation INC TYPE 566-A8970
ABN Cor INC TYPE 768-B5679
INC TYPE 897-B6789
Operations building INC TYPE 225-T5679 Legal
My expected output:
566-A8970
768-B5679
897-B6789
225-T5679
Please suggest. Thanks for your help!
 abhi90
		
			abhi90
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 
					
				
		
Have you tried using tExtractRegexFields?
 vboppudi
		
			vboppudi
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Are you looking for below output?
Regards,
 
					
				
		
 
					
				
		
 cterenzi
		
			cterenzi
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Should you wish to use tExtractRegexFields, this pattern should yield the result you're looking for:
"INC TYPE (\\d{3}-[A-Z0-9]{5})"
					
				
			
			
				
			
			
			
			
			
			
			
		 
					
				
		
 abhi90
		
			abhi90
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		