I'm trying to replace a String
space with an increment integer
the String looks like this (for example):
String str = "Im beginner Java Developer "
how can I solve it to be
im1beginner2Java3Developer4
I try str.replace
but the problem how I can put it in the String
parameter function (replace)