Posts by Sabão • 127 points
4 posts
-
2
votes0
answers83
views -
4
votes1
answer247
viewsQ: Using replace in a character in the middle of a String to add text before and after the String
I have this expression stored in a String: 1 * Math.pow(x, 3.0) + 4 * Math.pow(x, 2.0) + 1 * Math.pow(x, 1.0) + 27 However, I use a derivation library that only accepts the character ^ to make…
-
0
votes1
answer32
viewsQ: How to know which link class to select with php
I’m creating a website that has information from multiple vendors accessed by an administrator. To display vendor data, I have their names in a table by selecting them from a Mysql database. Taking…
-
6
votes2
answers3839
viewsQ: How to remove a Key from a JSON
Suppose the following JSON: {"id": 1, "preco": 100, "detalhe": "nenhum"} If I build an array with 100 of these objects and want to take the "detail" key from everyone, for example, it is possible…