Posts by Etgames 13 • 11 points
1 post
-
-1
votes1
answer33
viewsQ: How to remove field to field from a String starting from left and bounded by a size desired by the user
package teste; public class RemoverStringAEsquerda { public static String removerCampoAEsquerda(String value, int tamanhoMaximoString) { int i = 0; while (value.length() >= tamanhoMaximoString){…