I wanna print the name of an array within a function that I pass as an String argument:
public static String[][] cleanCSVtable(String[][] data_table) {}
instead of something like this:
[[Ljava.lang.String;@ba4539
For example lets assume that I have defined this array outside of the main function as
public static String [][] XYZ = null;
I wanna print XYZ within this function instead of
[[Ljava.lang.String;@ba4539.
Any hacks/hints/ideas?