Posts by DarkVeneno • 35 points
2 posts
-
1
votes1
answer75
viewsQ: Split String into blocks, considering only letters or text in square brackets
If I have a string like that: "Olá, o meu nome é [José Cavalo]" And I der split: {"Olá,", "o", "meu", "nome", "é", "[José", "Cavalo]"} First of all, we have a problem. At 0, we have "Olá,", and we…
-
1
votes1
answer165
viewsQ: Choose between two numbers in Java
I’m building a game in which I want an object with given coordinates on the ground to spread, creating more pixels of himself on the ground. Each pixel of which would be represented by number 4.…