I want to insert chars at specific location alternatively like :
input : orange
output : or##an##ge##
This is what I've tried:
String output = input.substring(x,x+2) + "00" + input.substring(x+2,x+4) + "00" + input.substring(x+4,x+6) + "00" + input.substring(x+6,7) + "00";