Posts by Junior Santos • 1 point
1 post
-
-1
votes1
answer604
viewsA: Separate a single string in an array of strings
Hi, buddy There would be no way to use the "String.split()" method in your application ? String frase = "nome teste 10"; String array[] = new String[3]; array = frase.split(" "); array[0] ->…