0
votes
5answers
75 views
Determine if string from argv[1] starts with a character or number (C-programming)
I'm writing a small application in C that takes two parameters. One is a filename, the other a number, and they may be specified in random order.
./main filename 12345
and
…
0
votes
5answers
301 views
Whats wrong with this program?
char *s = "hello ppl.";
for (i = 0; i < strlen(s); i++) {
char c = s[i];
if (c >= 97 && c <= 122) {
c += 2;
s[i] = c;
}
}
I want to r …
2
votes
4answers
73 views
How do I create a string using a loop variable in MATLAB?
I have a loop like this:
for i=1:no
%some calculations
fid = fopen('c:\\out.txt','wt');
%write something to the file
fclose(fid);
end
I want data to be written to dif …
1
vote
4answers
56 views
How do I remove the first character from a link’s text with jQuery?
I want to remove first character from link's text with jQuery.
<span class="test1"> +123.23 </span>
<span class="test2"> -13.23 </span>
I want to remove …
2
votes
2answers
48 views
How do I wrap long lines of text in a Java TextBox?
Hello! I want to load a text box in Java from a text file. This sounds simple but the big question is how to return at the end add newlines when text get close to the edge of the b …
6
votes
7answers
235 views
Quick padding of a string in Delphi
I was trying to speed up a certain routine in an application, and my profiler, AQTime, identified one method in particular as a bottleneck. The method has been with us for years, a …
4
votes
5answers
231 views
Equivalent of += for prefixing
Is there a bit of syntactic sugar for prefixing data to the beginning of a string in a similar way to how += appends to a string?
4
votes
5answers
117 views
Accepted practice for converting an Object to and from a String in Java ?
What is the commonly accepted method for converting arbitrary objects to and from their String representations, assuming that the exact class of the object is known ? In other word …
0
votes
3answers
104 views
There is some way to do this string extraction faster?
I need to extract the virtual host name of a HTTP request.
Since this willl be done for every request, I´m searching for the fastest way to do this.
The following code and times a …
1
vote
3answers
93 views
alternatives to string.Format(”… {0}…{1}…”,v1,v2) in .net?
string.Format() with it's "bla {0} bla" syntax is great. But sometimes I don't want to enumerate the placeholders. Instead I just want to map the variables sequentially in the plac …
0
votes
4answers
70 views
parsing float into string
Hi
I have a number like so: 4.47778E+11
Can anyone give me a way of converting that into its number representation easily in c#?
Thanks
5
votes
9answers
160 views
Fastest Way To Find Mismatch Positions Between Two Strings of the Same Length
I have a millions of pairs of string of same length which I want to compare and find
the position where it has mismatches.
For example for each $str1 and $str2 we want to find mi …
0
votes
5answers
214 views
Integer to IP Address - C
Hi guys...
I'm preparing for a quiz, and I have a strong suspicion I may be tasked with implementing such a function. Basically, given an IP address in network notation, how can w …
1
vote
2answers
69 views
Execute a PHP file, and return the result as a string
Let's assume I have the following file - template.php:
<?php $string = 'Hello World!'; ?>
<html>
<head>
<title>Test Page!</title>
< …
0
votes
3answers
74 views
Conversion from string “” to type ‘Integer’ is not valid.
When I try to run the following code I get a Conversion from string "" to type 'Integer' is not valid. error.
Dim maj = (From c In connect.Courses _
Wher …
