What I have:
I've got a text "Hi {0}, my name is {1}."
I've got a List<String> names = Arrays.asList("Peter", "Josh");
I'm trying to fit Peter where there's a {0} and Josh where there's a {1}.
What I want:
Hi Peter, my name is Josh.
Any ideas of how could I do it?
c#; so I retagged it. – Rahul Jul 8 '11 at 17:00Javahas almost same syntax asc#– Rahul Jul 8 '11 at 17:03