0
votes
4answers
31 views
How to obtain an unformatted string representation of an NSDecimal or NSDecimalNumber?
I have an NSDecimal and need this as technical string, i.e. with no formatting in any way. Floating point should be a "." if there is any, and minus sign should just be a "-" if there is any. besides …
0
votes
2answers
48 views
how do i get an always changing value from a string c#
I am working on a program that will automatically get your characters stats and whatnot from the wow armory. I already have the html, and i can identify where the string is, but i need to get the …
3
votes
8answers
182 views
Simple way to convert a string to a dictionary
What is the simplest way to convert a string of keyword=values to a dictionary, for example the following string:
name="John Smith", age=34, height=173.2, location="US", avatar=":,=)"
to the …
1
vote
3answers
70 views
Constant string arrays
Is it possible to have a (fixed) array which stores its elements in the read-only segment of the executable and not on the stack? I came up with this code but unfortunately it is very unflexible when …
2
votes
3answers
129 views
Java - is there an Inbuilt function for concatenating the Strings in a String[]?
Or a better way than this?
String concat(String[] strings) {
StringBuilder out = new StringBuilder();
for(String next: strings) {
out.append(next);
}
return out.toString();
}
No …
1
vote
2answers
50 views
String (C++) in XCode
Does anyone know why in XCode, when you do something simple like
string str;
cout << "input string";
getline(cin, str);
cout << str;
you would get malloc: *** error for object …
0
votes
1answer
28 views
Finding a fuzzy match with bitap algorithm
Reciently I've looked through several implementation of bitap algorithm but what all of them do is finding the beginning point of fuzzy match. What I need is to find a match. There's an example:
Say …
0
votes
2answers
54 views
Why doesn’t this for-loop let me input text the first cycle?
What I want to do is ask the user for a number of strings to read into an array, and then ask the user to input that number of strings and read them into the array. When I run this code it never asks …
0
votes
2answers
96 views
parsing argc and argv in c++
I want to learn more C++... Usually I make a for loop to parse argv, and I wind up with a bunch a C-style strings. I want to do something similar in C++, but preferably without reading from …
0
votes
1answer
125 views
php string variables in gettext (forgot one case scenario)
I've posted a question yesterday but I just realized that the answer doesn't seem to be working for a certain situation. The post was …
0
votes
4answers
72 views
How to split strings on carriage return with C#?
Hi,
I have an ASP.NET page with a multiline textbox called txbUserName. Then I paste into the textbox 3 names and they are vertically aligned:
Jason
Ammy
Karen
I want to be able to somehow take …
2
votes
7answers
140 views
PHP String concatenation - “$a $b” vs $a . “ “ . $b - performance
Is there a speed difference between, say:
$newstring = "$a and $b went out to see $c";
and
$newstring = $a . " and " . $b . " went out to see " . $c;
and if so, why ?
3
votes
5answers
96 views
C - How to justify output lines using printf() to get equal length?
I have two functions, one which produces messages like "Starting initialization..." and the other which cheks return codes and outputs "Ok\n", "Warning\n", or "Error\n". However, produced output is of …
0
votes
2answers
34 views
name=”option11”,name=”option21”,name=”option31”,name=”option41”,1,2,3,4.., is a variable. How to write the code?
$html=<<<html
<div>A:<input type="text" maxlength="40" size="8" name=option$i."1" value='$option1'/>(answer)</div><br/><br/>
html;
echo $html;
$i is a …
0
votes
1answer
25 views
Capture bitstream into string
I'll need to capture my bitstream into a string and keep concatenating the string. However, I'm not really sure how it's to be done. Any ideas?
#include <bitset>
#include <iostream>
…
