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