I'm doing some testing with some C # code and during an analysis I realized that some high peaking problems happen when whole-valued conversions to string occur, in most cases the conversion happens like this: classe.valor.ToString("0.0")...
I was left with a doubt after @bigown answered this question:
What is the ~ (useful) operator used in PHP ?
How can I get the negative value in binary?
And how, through the binary, reach a negative value?
In @bigown's response, he...
I went through this problem by implementing a simple database query library sqlite in android and would like to share the solution with community, I think it's useful as I've thought through until I find a simple solution.
In the imple...
I'm creating an algorithm in JavaScript, and I'm already finding it too cumbersome.
Now I need a string "multiplied" N times. I would like to know if it is possible to do this without using a retry.
For example, for the algorithm to return "w...
Next, I have a page that generates content scrambled with dynamic and non-dynamic strings, I need to get a dynamic value between the | tabs, it contains random data / strings that change when loading the page. The variable I want to get h...
I have this:
l=['Car 8', 'Bike 5', 'Train 10']
And I would like to have something like this:
[('Car','8'), ('Bike','5'), ('Train','10')]
How could you make a list of strings into something like a list of strings tuples?
I always created the strings with the quotation marks, like this:
local minhaString = "Eu sou uma string"
I downloaded a source to give a studied language and I came across the following way to create a string :
local query = [[
SELE...
In my program I have some classes where data is stored. For example
Class1.alfa.dado = 66;
Class1.beta.dado = 56;
Class1.gama.dado = 37;
The user will select one of the options that you want to change in a ComboBox, in this ComboBox are the...