Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 Rathesh
		
			Rathesh
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I want to load an excel file to database.Source File name will be like Test08232018.xlsx. Name of the file followed by current date. Sometimes there will be space between Filename and data. Job has to fetch fetch the file correctly even if it having space or not having the space.
 fdenis
		
			fdenis
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 iamabhishek
		
			iamabhishek
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 Rathesh
		
			Rathesh
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		yes. but how to implement regular expression in the file path.
 Rathesh
		
			Rathesh
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Sometimes file name contains space between name and date and sometimes it won't
 fdenis
		
			fdenis
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 Rathesh
		
			Rathesh
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 iamabhishek
		
			iamabhishek
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		A regular expression match like this -
"Test(.*)"
would make sure that you are fetching all the files start with Test
 Rathesh
		
			Rathesh
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 iamabhishek
		
			iamabhishek
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		