The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
79 views

sizeof character and strlen string mismatch

As per my code, I assume each greek character is stored in 2bytes. sizeof returns the size of each character as 4 (i.e the sizeof int) How does strlen return 16 ? [Making me think each character ...
-3
votes
0answers
41 views

C++ conversion to C# two errors [closed]

Just when I think I'm done converting from C++ to C# I run into this. I have two issues below that I can't figure out how to convert. The first is the while(*p) and next is p += (strlen(p) + 1); Any ...
1
vote
2answers
46 views

php to set order of preference of an Array Sequence using string length

$records = array( '123PP' => 3.63, '123DDD' => 9.63, '123D' => 6.63, '123PPPP' => 9.63, '123DD' => 9.63, '123P' => 2.63, '123PPP' => 1.53 ); After looping through the ...
2
votes
2answers
61 views

For any string “char name[10]=”test“”,is strlen(name)+1 always guaranteed to be same as sizeof(name)?

For a string name[],can we use strlen(name)+1 and sizeof(name) interchangeably in our code without second thought?Aren't they same?I checked about it and found out even the return type for both is ...
0
votes
0answers
20 views

Segmentation fault 11 modsecurity?

If i disable mod security module it fixes segmentation faults problem. Problem occur on php script wich accually saves some configuration to file. What this backtrack log is saying ??? Where I should ...
3
votes
2answers
47 views

Why is absence of array index in “extern char name[]” not affecting strlen(name) but causing error for sizeof(name)?

Now,from what I understand,the extern in the declaration of name[] tells the compiler that its definition is somewhere else (In my program,I have defined it below the part where I have used it).But ...
0
votes
1answer
27 views

PHP Checking ctype and strlen in single if statement

I have a form that validates First Name, Last Name, and E-mail before processing. It seems however that something isn't working. If I enter an e-mail address and my script validates it, then the page ...
1
vote
2answers
40 views

PHP str_pad and strlen within preg_replace

I'm attempting to output a certain number of zeros depending on the number of digits. My code doesn't output what I want. $x = '12345'; $y = preg_replace('/(\d+)/', str_pad('',(12-strlen("$1")),0), ...
0
votes
0answers
24 views

How do I count the number of links in a div with PHP

How do I count how many links are in a span? I cannot find any topics on this. Here is the span I want to count links in: $finish = $selector->query("/html/body//span[@class='pagelinks']/a");
0
votes
1answer
64 views

using strlen in php for form validation

I have the following validation: if (empty($errors) === true) { if (strlen($_POST['Description']) > 250) { //strlen counts the number of bytes $errors[] = 'Your ...
0
votes
1answer
160 views

C string from GetString() when strlen produces segmentation fault [closed]

I am running a program in C. When I run the program I get a segmentation fault error. IN gdb when I backtrace it tells me Program received signal SIGSEGV, Segmentation fault. __strlen_sse2_bsf ...
0
votes
5answers
75 views

strlen() php function giving the wrong length of unicode characters [duplicate]

I am trying to get the length of this unicode characters string $text = 'نام سلطان م'; $length = strlen($text); echo $length; output 20 How it determines the length of unicode characters string? ...
1
vote
0answers
22 views

Visual Studio stop tracing into strlen.asm

How can I prevent Visual Studio from tracing into strlen() and other such functions? I have a source line like: i = my_function(x, strlen(x)); When I step into this line of source, I don't want to ...
-3
votes
1answer
45 views

Handling selectbox options with strlen() and strcmp() [closed]

What php code should I start writing first? And how should I go about handling the strings submitted by this html form so that they can be processed with either strlen() or strcmp()? any help/pointers ...
-2
votes
2answers
82 views

PHP for HTML forms

I have the below drop down list as part of a HTML form: Print Options:<br/><select name="printopts"> <option selected=""></option> <option ...
-2
votes
2answers
54 views

C99 Segmentation Overflow strlen, not consistent

I have been searching for answers to this problem for a while, and I cannot seem to find a solution. When the arguments are of different lengths, there is no error. When they are of the same length, ...
3
votes
4answers
102 views

PHP: strlen returns character length instead of byte length

I have a wordpress web site. I've created simple page template like: <?php /** * Template Name: Test */ echo strlen('Привет'); ?> Then i've created a page using this template. The ...
1
vote
1answer
48 views

Strange Cocoa Crash on strlen in NSApplicationMain()

I Closed out of my xcode project a few days ago and when I came back, it keeps crashing! I haven't changed any of the code so I have no idea what happened. I get an EXC_BAD_ACCESS (code=1, ...
1
vote
1answer
54 views

Segmentation fault in strlen when using FTS fts_open()

I have a bug that I've found boils down to this: #include <sys/types.h> #include <sys/stat.h> #include <fts.h> #include <stdlib.h> int main () { char *LOG_ROOT = ...
0
votes
1answer
41 views

Strlen into a structure

Hello i am trying to use a strlen function in an structure but i am failing badly. My code is this: after the scanf i get only the first caracter of the table and in the last print f the programm ...
2
votes
1answer
104 views

What is the efficiency of strlen() in PHP?

Does using strlen actually count the number of bytes in the string by iterating through the string, or does it simple return the value of an already calculated length of the string from an index? The ...
1
vote
2answers
102 views

Why is strlen() slower than use of variable when string size does not matter

I was writing some simple file manipulation and a thought came up if it wouldn't be faster if I saved the string size in variable. It showed up that it is 10 times faster. Using this code: include ...
0
votes
3answers
82 views

Php length of cyrillic string doubles its value

Hello here it is the problem: when i get to the $_POST latin string strilen() works perfectly, but when i get cyrillic string strlen() doubles its value here is the code: $word = $_POST['word']; echo ...
1
vote
3answers
106 views

strlen: Address out of bounds leading to segmentation fault

I'm trying to do a couple simple implementations of string_reverse in C. However, I get the following error when I debug in gdb: Program received signal SIGSEGV, Segmentation fault. ...
1
vote
5answers
79 views

strlen() with logical and comparison operators not working

Ok I am fairly fairly new in PHP and I am trying to make a contact form. There are some fields which I need to be of certain characters. if (!empty($_POST['title'])) { $title = $_POST['title']; ...
1
vote
4answers
99 views

Find string in buffer

This function browse through the strings added into the buffer and search for the specified field. If the field is found in the buffer, the pointer to the assigned content is returned. If the ...
-2
votes
3answers
86 views

Why php print_r($array) will not print the spaces in a string [closed]

$myArray = array(); array_push($myArray, "' a'"); use Framework\ArrayMethods as ArrayMethods; print_r(($myArray)); print_r(ArrayMethods::lengtOfElements($myArray)); The output will be: Array ...
0
votes
0answers
73 views

Solaris 5.9 issue

Does someone know how can I fix the problem below? I'm not familiar with UNIX/Solaris in deep. I've googled it and I've found some information. An unexpected exception has been detected in native ...
0
votes
1answer
103 views

PHP: strlen() not functioning…At all

I've tried looking at other answers, but all I come across is people placing their comparison operators in the wrong direction. Not the case here. Below is a simplified version of my code. This code ...
1
vote
1answer
78 views

runtime error in a function copying from string to allocated memory

I have some second thoughts about the following C puzzle question. I'm curious what more experience C programmers may think... Have a look at the sample code: char * strdup (const char * s) { ...
22
votes
1answer
532 views

strlen - the length of the string is sometimes increased by 1

I'm doing some C puzzle questions. In most cases, I am able to find the right answer, but with that one I am having problems. I know the right answer by using the compiler, but I don't know the ...
0
votes
4answers
68 views

Range condition with string length

I currently have this code: if (strlen(trim($username) < 4)) { $error='Username should be between 4 and 10 characters.'; } if (strlen(trim($username) > 10)) { $error='Username should be ...
-7
votes
1answer
66 views

My program doesn't run [closed]

I coded one more function. It gets 2 strings that are entered. 2nd string is deleted within 1st string. I guess, the reason that my program doesn't run is returning a pointer. Can you help me? ...
-1
votes
4answers
120 views

C simple string program does not compile

#include <stdio.h> #include <string.h> char Jones(char, char); int main() { char name[]="Andrew"; char surname[]="Jones"; char result[80]; result=Jones(name, surname); ...
3
votes
6answers
246 views

Why does my strlen function keep “crashing”? [closed]

I'm trying to write a strlen function in C but it doesn't work. int strlen(char*string) { int length=0; while(length[string]!='0') { ++length; } free(string); return ...
3
votes
2answers
154 views

How the magic bits are improving the strlen function in glibc

I was going through the source of strlen for glibc. They have used magic bits to find the length of string. Can someone please explain how it is working. Thank you
0
votes
2answers
62 views

Determine current domain character length

I am parsing domains and running into a problem handling subdomains. If the domain is http://www.google.co.uk, I want to obtain the length of google which is 6. I am using parse_url() to return the ...
0
votes
0answers
36 views

How to set charset on doctrine entities or make doctrine use mb_strlen?

I'm building a Symfony2 project and I use the @column annotation for entities to set lengh of attributes for example. @Column(name="question", type="string", length=100) The problem is when I ...
2
votes
0answers
41 views

examining C library: better C String library [duplicate]

Possible Duplicate: What do the parentheses around function name mean? As an exercise and a learning experience I decided to go through the source code of a C library called a better C ...
1
vote
1answer
41 views

How do I print out all the variables in this function? [closed]

When I run this function it only prints out the else variable for the statement. (FALSE3) Its not wrong but I want it to show TRUE, FALSE1, and FALSE2 as well. What do I do? function ...
-3
votes
1answer
74 views

How to echo from an array in php?

I have a text file, with digits in it like the following: 12345678901234567890 123456789012345678901 123456789012345678902 1234567890123456789012 1234567890123456789023 12345678901234567890123 ...
1
vote
0answers
56 views

Bad Ptr when using malloc?

I'm trying the following: int length = strlen(input)+1; char * toCrypt = (char*)malloc(length); Where input is some string. Whats strange is that sometimes this does work, and sometimes toCrypt ...
-1
votes
2answers
414 views

Strlen is not giving correct output

I have a string which i retriev from database, i want to calculate the length of the string without spaces, but it is displaying a larger value of length(21 characters greater than the actual count) i ...
1
vote
3answers
194 views

php while inside for loop, using strlen

The following is a code block that's working fine as regards getting the data I want. Don't laugh, it's probably inefficient, but I'm learning :) What I want, is to use the $totalLength variable, to ...
0
votes
2answers
84 views

manipulating strings in C

I am trying to write a method that removes the first letter of a string and appends it to the end of the string with "ay" appended afterwards. I am using a linked list structure, and it works, but ...
0
votes
1answer
158 views

using strlen in array declaration

I wrote the following code : char arrA[] = "something."; char arrB[ strlen(arrA) + 5]; And my code behaves vaguely. I am getting the wrong output. First, according to me the problem would be the ...
0
votes
4answers
337 views

php mb_strlen return value is weird [closed]

gb2312 is a double byte character set, using mb_strlen() to check a single chinese character will return 2, but for 2 more characters,sometimes the result is weird, anybody know why? how can I get ...
1
vote
1answer
57 views

Total files in subdirectories only where with strlen is a certain length

I'm having trouble finding an answer to this one. What I need to achieve is to scan a directory with subdirectories to return a total file count where the character count of the filename is 48 ...
5
votes
1answer
3k views

format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘size_t’ [-Wformat]

Well I have searched about this warning and they really had some mistake in code,but here is something very unexpected I could not figure out . We do expect strlen(x) to be an integer but what does ...
-4
votes
2answers
96 views

runtime error when using int n=strlen(…) in a loop [duplicate]

Possible Duplicate: What’s wrong with strcpy()? (Segmentation fault) The following code works properly (yields "5" when I enter "abcde"): char* tekst; scanf("%s", tekst); int ...

1 2 3 4