I have the below string as shown and as shown below the string should be printed in same format
-t "|" -e "
so what I have tried is
String s ;
args = String.valueOf(" -t");
args = String.valueOf(args) + String.valueOf(" |");
Please advise, is it correct?