Tagged Questions

0
votes
1answer
44 views

Printf and hex values

So, I have a value of type __be16 (2 bytes). In hex, the value is represented as 0x0800 or 2048 in decimal. (16^2 * 8) So, when I printf this; I do this: printf("%04X", value) …
3
votes
3answers
135 views

How to efficiently concatenate strings in Go?

In Go, string is a primitive type, it's readonly, every manipulation to it will create a new string. So, if I want to concatenate strings many times without knowing the length of …
1
vote
3answers
99 views

String formatting expressions (Python)

String formatting expressions: 'This is %d %s example!' % (1, 'nice') String formatting method calls: 'This is {0} {1} example!'.format(1, 'nice') I personally prefer the met …
4
votes
5answers
194 views

string program for ice cream shop (Edited again)

With the assistance of others, I have redone the code from scratch due to them pointing out numerous errors and things that wouldn't work. Thus I have changed the code massively. …
0
votes
4answers
40 views

Php script problem

I have a little problem with my script. When I try to run it I receive "Parse error: syntax error, unexpected T_STRING" as long as I have ' sign in my code. When I change all ' int …
0
votes
0answers
15 views

How to compare similar sentences/strings in the database using Rails

Hi, I have an application that user inputs quotes or such. I want to make sure that these quotes don't exist in the DB. Sometimes the user enters the quote slightly differently fr …
6
votes
13answers
426 views

Using C, convert a dynamically-allocated int array to a comma-separated string as cleanly as possible

I’m much less experienced in C than I am in higher-level languages. At Cisco, we use C, and I sometimes run into something that would be easy to do in Java or Python, but very diff …
0
votes
3answers
74 views

How to get the first N words from a NSString in Objective-C?

What's the simplest way, given a string: NSString *str = @"Some really really long string is here and I just want the first 10 words, for example"; to result in an NSString with …
1
vote
2answers
20 views

how to Sort out Mysql odbc connection strings stored in registry as plain text

Mysql odbc connection string is stored in the windows registry as plain text. So someone can find it and view my database. How can I sort out this security problem. thanks
2
votes
4answers
141 views

how to store printf into a variable?

I want to store a formatted string using something similar to what printf does in C. char *tmp = (char *)sqlite3_column_text(selectstmt, 2); const char *sqlAnswers = printf("selec …
4
votes
6answers
218 views

What does ‘y’ in the output stand for in C?

Hi All, I have a problem, I construct a string in a loop and the output of that string to stout displays the string and a character 'y' with two dots above it as the last characte …
-1
votes
2answers
83 views

Using Recursion To Compare Strings To Determine Which Comes First Alphabetically Java

I am trying to write a method that uses recursion to compare the strings str1 and str2 and determine which of them comes first alphabetically (i.e., according to the ordering used …
0
votes
5answers
217 views

Removing Spaces from a String in C?

What is the easiest and most efficient way to remove spaces from a string in C? Thanks.
2
votes
2answers
76 views

Is there a tool to diff/merge/sort localizable strings files?

Localizable strings file which are used for Apple/iPhone apps localization have the following format: /* COMMENT */ "KEY" = "VALUE" Note that KEY is unique in a given strings fil …
0
votes
4answers
66 views

Where is the prototype property on strings in JavaScript?

I just noticed that there is no prototype property on strings in JavaScript. This is a pedagogical question while I try to wrap my head around the JavaScript type system but what …

1 2 3 4 5 30 next
15 30 50 per page