Tagged Questions

2
votes
12answers
2k views

Efficient way to compare two strings (ordering of characters irrelevant)

I am trying to come up with an algorithm to compare two strings. It would register a match any words that contain the same letters. For example rent and tern would be equivalent because they both ...
1
vote
2answers
111 views

String sorting with numbers last objective c

I had a good search of SO but couldn't find anything relevant to this problem. I have a custom object class that implements a comparison method for sorting in arrays. This comparison uses the "name" ...
1
vote
3answers
232 views

C comparing pointers (with chars)

Good evening, I have 2 functions and each of them accepts as argument a pointer to char: char pointer[255]; func1(char* pointer) { ... memcpy(pointer,some_char,strlen(something)); return; } ...
1
vote
5answers
212 views

Compare variables PHP

How can I compare two variable strings, would it be like so: $myVar = "hello"; if ($myVar == "hello") { //do code } And to check to see if a $_GET[] variable is present in the url would it be like ...
1
vote
5answers
378 views

comparing string literals in c++ templates

I wrote a template function to compare two variables: template <class t> int compare(const t &a, const t &b) { if(a>b) return 1; if (a<b) return -1; return 0; } int main(int ...
0
votes
1answer
29 views

Comparing a UILabel string to a mutable array in Objective-c

There are a lot of posts similar to mine but the answers given are not working on my program. I read a lot of forums and blogs already. I am really having a hard time, please help me. My program has a ...
0
votes
5answers
116 views

DateTime question

I have 2 DateTime objects, which I save to a file after using the ToShortDateString() function; the strings look like "12/15/2009". I am stuck on this part now, I want to initialize DateTimeObject(s) ...
0
votes
5answers
373 views

What is the best way of comparing a string variable to a set of string constants?

if statement looks too awkward, because i need a possibility to increase the number of constatnts. Sorry for leading you into delusion by that "constant" instead of what i meant.
-1
votes
2answers
88 views

Comparing between two words (Anagrams) in Python 2.72 [closed]

Possible Duplicate: Checking if two strings are permutations of each other in Python I need to write a function which receives two words (strings), and checks if the two words have exactly ...