Tagged Questions

strcmp is a string compare function that is available in languages such as C, C++, and Python.

learn more… | top users | synonyms

17
votes
8answers
564 views

strcmp for empty string

I was reviewing some code and I saw someone do a if (0 == strcmp(foo,"")) I am curious because I think it would be faster to do a if (foo[0] == '\0') Is this correct or is strcmp optimized ...
11
votes
3answers
8k views

Is there a JavaScript strcmp()?

Can anyone verify this for me? JavaScript does not have a version of strcmp(), so you have to write out something like: ( str1 < str2 ) ? -1 : ( str1 > str2 ? 1 : 0 ...
5
votes
4answers
561 views

Strcmp for cell arrays of unequal length in MATLAB

Is there an easy way to find a smaller cell array of strings within a larger one? I've got two lists, one with unique elements, and one with repeating elements. I want to find whole occurrences of the ...
5
votes
6answers
568 views

strcmp() but with 0-9 AFTER A-Z? (C/C++)

For reasons I completely disagree with but "The Powers (of Anti-Usability) That Be" continue to decree despite my objections, I have a sorting routine which does basic strcmp() compares to sort by its ...
4
votes
2answers
43 views

Why do these two programs give different outputs in VC++2008?

Why do these two programs give different outputs in VC++2008? After all, the same strings are compared. strcmp__usage.c #include <stdio.h> #include <string.h> main() { char ...
4
votes
3answers
130 views

Loadable Bash Builtin

I'm writing a strcmp bash builtin. It compiles fine, but when I try to enable it, I get: $ enable -f ./strcmp strcmp bash: enable: cannot open shared object ./strcmp: ./strcmp: only ET_DYN and ...
4
votes
14answers
2k views

C++ - strcmp() does not work correctly?

There's something really weird going on: strcmp() returns -1 though both strings are exactly the same. Here is a snippet from the output of the debugger (gdb): (gdb) print s[i][0] == ...
3
votes
5answers
152 views

C - Comparing numeric strings

Out of professional curiosity, what is the safest / fastest / most efficient way to compare two fully numeric strings in C? #include <stdio.h> #include <string.h> #include ...
3
votes
1answer
640 views

Templated Functions.. ERROR: template-id does not match any template declaration

I have written a function template and an explicitly specialized templated function which simply takes in 3 arguments and calculates the biggest among them and prints it. The specialized function is ...
3
votes
5answers
1k views

Finding unique elements in an string array in C

C bothers me with its handling of strings. I have a pseudocode like this in my mind: char *data[20]; char *tmp; int i,j; for(i=0;i<20;i++) { tmp = data[i]; for(j=1;j<20;j++) { ...
3
votes
5answers
1k views

fgets and strcmp [C]

I'm trying to compare two strings. One stored in a file, the other retrieved from the user (stdin). Here is a sample program: int main() { char targetName[50]; fgets(targetName,50,stdin); ...
2
votes
4answers
74 views

segmentation fault with strcmp?

I am trying to understand why my code crashes. I have an array of structs which look like this: typedef struct contact { char cFirstName[10]; char cLastName[10]; char cTelphone[12]; } ...
2
votes
4answers
110 views

strcmp() return values in c

I am learning about strcmp() in C. I understand that when two strings are equal, strcmp returns 0. However, when the man pages state that strcmp returns less than 0 when the first string is less ...
2
votes
1answer
134 views

alphanumeric sorting order of strings in C [closed]

Possible Duplicate: Natural sort in C - “array of strings, containing numbers and letters” When sorting strings in C with qsort and strcmp I have the problem that alphanumeric ...
2
votes
1answer
282 views

How to make strcmp to return 0 in assembly

I want the call to the strcmp function to return 0, which means int strncmp(const char *s1, const char *s2, size_t n); const char *s1 and const char *s2 should contain the same string. If s2 ...
2
votes
3answers
255 views

strcmp behaviour

When I run the following code: #include <stdio.h> int main(int argc, char *argv[]) { int p = 0; p =strcmp(NULL,"foo"); return 0; } I get segmentation fault. echo $? says ...
2
votes
1answer
227 views

MATLAB: struct.name type and strcmp

I have the following code: fonts = dir('fonts') strcmp('BELL.TTF',fonts.name) where dir('fonts') returns a 33x1 struct where each entry has name (string), date, and a few other things. I ...
2
votes
6answers
255 views

Can I please get some feedback for this strcmp() function I implemented in C?

I'm learning C. I find I learn programming well when I try things and received feedback from established programmers in the language. I decided to write my own strcmp() function, just because I ...
2
votes
4answers
256 views

C++ program crashes

I've this assignment to implement strcmp function. Sometimes it runs okay but other times it crashes. Please help me. #include <iostream> using namespace std; int mystrcmp(const char ...
2
votes
4answers
871 views

string Comparison

I want to compare two user input strings, but not able to do so... #include "stdafx.h" #include "iostream" #include "string" using namespace std; int _tmain(int argc, _TCHAR* argv0[]) { string ...
2
votes
5answers
888 views

strcasecmp in C returns 156 instead of 0, any ideas why?

I have the following code: printf("num: %d\n", strcasecmp(buf, "h\n")); And I get the following results when I try plugging in different letters: a: -7 g: -1 i: 1 j: 2 h: 156 H: 156 Should ...
2
votes
1answer
1k views

error when I call strcmp Invalid conversion from 'int' to 'const char*'

I'm using strcmp to compare character arrays in c++, but I get the following error for every occurrence of strcmp: error: invalid conversion from 'int' to 'const char*' followed by: error: ...
2
votes
8answers
2k views

Is there any safe strcmp?

I made a function like this: bool IsSameString(char* p1, char* p2) { return 0 == strcmp(p1, p2); } The problem is that sometimes, by mistake, arguments are passed which are not strings ...
2
votes
4answers
1k views

C - strtok and strcmp

I am having a bit of trouble using strtok with strcmp. //Handles the header sent by the browser char* handleHeader(char *header){ //Method given by browser (will only take GET, POST, and ...
2
votes
7answers
865 views

comparing using strcmp

compiling with gcc C99 I am trying to compare 2 string using string compare. However, I seem to be getting a stack dump on the strcmp line. **attribute will contain these, so I am looking for ...
2
votes
9answers
2k views

Am I correct that strcmp is equivalent (and safe) for literals?

We all know the trouble overflows can cause, and this is why strn* exist - and most of the time they make sense. However, I have seen code which uses strncmp to compare commandline parameters like so: ...
1
vote
6answers
77 views

return value of function == 0?

Ok, so I have the following function: int functionX() { return strcmp(array1,array2)==0; } Why would anyone do this? the ==0 would suggest that this function will always return FALSE. Is this ...
1
vote
2answers
72 views

php string compare

I'm trying to compare a specific part of a url to get a list of the endings (which are resource/'location' where location is either state initials or a string). I'm using this to populate a drop down ...
1
vote
3answers
53 views

What is the difference between these two strcmp() functions in PHP?

I'm having trouble understanding the difference between A) return strcmp($digest, $signature) == 0; and B) return strcmp($digest, $signature);
1
vote
2answers
101 views

Comparing “” and “” in C

So I have the following test code: #include <string.h> #include <stdio.h> int main(int argc, char* argv[]){ int retVal = strcmp("", ""); printf("%d\n", retVal); return 0; } And ...
1
vote
2answers
76 views

Typecast for qsort function pointer

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> static int cmpstringp(const void *p1, const void *p2) { /* The ...
1
vote
3answers
95 views

Character Pointers (allotted by new)

I wrote the following code: char *pch=new char[12]; char *f=new char[42]; char *lab=new char[20]; char *mne=new char[10]; char *add=new char[10]; If initially I want these arrays to be null, can't ...
1
vote
2answers
141 views

Efficient string sorting algorithm

Sorting strings by comparisons (e.g. standard QuickSort + strcmp-like function) may be a bit slow, especially for long strings sharing a common prefix (the comparison function takes O(s) time, where s ...
1
vote
3answers
633 views

lvalue required as left operand of assignment

Why am I getting lvalue required as left operand of assignment with a single string comparison? How can I fix this in C? if (strcmp("hello", "hello") = 0) Thanks!
1
vote
2answers
53 views

Use strcmp to prevent duplicate log lines

I'm using the code below to compare the last line of a log minus the time stamp against $data, ive echo'd both of them and they are exactly the same however its still writing a new log entry every ...
1
vote
6answers
825 views

: error C2664: 'strcmp' : cannot convert parameter 2 from 'char' to 'const char *'

i need help about that script. BOOL Checking(LPCSTR MacID) { char ClientMacs[18] = { "11:22:33:44:55:66",}; for(int x=0; x < 10; x++) { if(!strcmp(MacID, ClientMacs[x])) { ...
1
vote
2answers
234 views

compare char* with string macro

Hi I have the following code: #define INPUT_FILE "-i" int main(int argc, char* argv[]) { .... } is there any way in C++ to compare between strings in argv[] and INPUT_FILE? I tried ...
1
vote
2answers
186 views

Problem with String compare(strcmp) in C

I'm newbie in C. I want to compare string that I use '#DEFINE' and char buf[256]. This is my code. #define SRV_SHOWMENU "SRV_SHOWMENU" #define SRV_LOGIN_TRUE = "SRV_LOGIN_SUC" #define SRV_LOGIN_FAIL ...
1
vote
2answers
443 views

strcmp and wcscmp

Is this if( (FileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) && (wcscmp(FileData.cFileName, L".") != 0) && (wcscmp(FileData.cFileName, L"..") != 0) ) the same as ...
1
vote
3answers
326 views

Help! strcmp is lying to me when fed strtok results

strcmp, when fed the results of strtok, in the following code seems to be blatantly lying to me. int fSize; char * buffer=NULL; char * jobToken = "job"; char * nextToken=NULL; job * curJob=NULL; ...
1
vote
4answers
1k views

strcmpi renamed to _strcmpi?

In MSVC++, there's a function strcmpi for case-insensitive C-string comparisons. When you try and use it, it goes, This POSIX function is deprecated beginning in Visual C++ 2005. Use the ISO C++ ...
1
vote
2answers
721 views

How do I achieve something like MySQL's latin1_general_ci collation in PHP?

I am writing a string compare function to sort medical terms that often contain special accented characters from many different European languages, and I need to somehow achieve a collation similar to ...
1
vote
5answers
1k views

strcmp not working

I know this may be a totally newbie question (I haven't touched C in a long while), but can someone tell me why this isn't working? printf("Enter command: "); bzero(buffer,256); ...
0
votes
5answers
69 views

strcpy and strcmp, what am I doing wrong?

User should enter a few strings and input space as string when he is done. Code should return longest and shortest word entered. strcmp always returns -1... what am i doing wrong? #include ...
0
votes
3answers
43 views

What does “passing argument 2 of strcmp makes pointer from integer without a cast” error in C mean?

I am compiling my C code and am getting two errors: warning:passing argument 2 of strcmp makes pointer from integer without a cast and warning: note: expected const char * but argument is ...
0
votes
2answers
29 views

C++ custom comparator between std::string and potentially non-null terminated character array for unordered_map::find

I know the question may sound strange, but there is some legacy code where there is an unordered_map where the std::string key is maximum size 8+1 (the 1 for null-termination). I am receiving a ...
0
votes
1answer
34 views

Is it possible to input a variable of some sort and compare it with another variable at the same time in C?

I was wondering if there was possibly a way where one could scan a variable and then compare it all in the same line (same time). So far I tried this: if(strcmp((scanf("create.%s",comp)),comp)==0) ...
0
votes
4answers
158 views

interesting strcmp implementation failure. (C)

I am working on a small project which I have no access to any C standard library.( building a microkernel in ARM structure from the scratch. Even printf had to be implemented ) Under this ...
0
votes
2answers
91 views

Scan an array using strcmp

im wondering if theres a way you can scan an array for a match using strcmp.I know the parameters passed to strcmp are c strings. im trying to search the 2 d array mprt with string1; im getting this ...
0
votes
2answers
101 views

Finding a match in an array using strcmp

im trying to compare words of an array using strcmp.Im trying to get each word that appears more than once in the array to print out only once, so i can determine the number of unique words.I know ...

1 2