I have a String array as shown below:
String[] titles = new String[] { "Booking", "Entry", "Type", "Duration", "Status", "Contract ID", "Capacity", "Start Day", "End Day", "Source Ref" };
I need to add some more values ββto this array in the following state, for example below:
titles = new String[] { "Booking", "Shipper", "Booking Quantity", "Entry", "Type", "Duration", "Status", "Contract ID", "Capacity", "Start Day", "End Day", "Source Ref" };
here I added "Shipper", "Booking Quantity" to the first array.
Is there a way to add these values ββbased on the index or in any way without creating, for example, the example above? (Is it possible?)
source share