Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 
					
				
		
 janhess
		
			janhess
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 
					
				
		
I just wonder how do I wants to removed certain character or word in string. 
 janhess
		
			janhess
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		
column_name.substring(int startIndex, int endIndex) in tMap. 
 
					
				
		
 _AnonymousUser
		
			_AnonymousUser
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 
					
				
		
 
					
				
		
replaceAll function throws null pointer expression when no matching string found.
 manodwhb
		
			manodwhb
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		@ContactNitesh89,can you try the below one.
column_name==null ||"".equals(column_name) ? column_name : column_name.replaceAll("-morning","")
