chaîne d'incrément Android Studio

// increment string variable by 1
yourString = "3"
yourString = Integer.parseInt(yourString).plus(1).toString()
Apollo