Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
332 views

Why reimplement strlen as loop+subtraction?

Inspired by this question about the following code from SQLite3: static int strlen30(const char *z){ const char *z2 = z; while( *z2 ){ z2++; } return 0x3fffffff & (int)(z2 - z); } ...
7
votes
8answers
610 views

strlen() function

I have read that use of strlen is more expensive than such testing like this: We have a string x 100 characters long. I think that for (int i = 0; i < strlen(x); i++) is more expensive than ...
6
votes
4answers
961 views

strlen in the C preprocessor?

Is it possible to implement strlen() in the C preprocessor? Given: #define MYSTRING "bob" Is there some preprocessor macro, X, which would let me say: #define MYSTRING_LEN X(MYSTRING)
5
votes
4answers
188 views

parallel strlen?

I'm wondering if there would be any merit in trying to code a strlen function to find the \0 sequence in parallel. If so, what should such a function take into account? Thanks.
4
votes
8answers
483 views

Quick strlen question

I've come to bother you all with another probably really simple C question. Using the following code: int get_len(char *string){ printf("len: %lu\n", strlen(string)); return 0; } int ...
3
votes
1answer
46 views

static size_t strnlen(const char *s, size_t max) — why a static return value?

I might be going insane, but I don't think I've ever seen this in c++ (though my reference code is in C). Why is there a static on the return value of the code here and what impact does it have? I ...
3
votes
3answers
98 views

Why is the param of strlen a “const”?

I'm learning the C language. My question is: Why is the param of strlen a "const" ? size_t strlen(const char * string); I'm thinking it's because string is an address so it doesn't change after ...
3
votes
7answers
124 views

substr with strlen

i have an amount like 0003000 the last 2 digits are the decimalnumber. I want to transform 0003000 to 00030,00 (insert an decimal in front of the last 2 digits). i tried to do this with substring, ...
3
votes
8answers
138 views

Is There A Difference Between strlen()==0 and empty() in PHP?

I was looking at some form validation code someone else had written and I saw this: strlen() == 0 When testing to see if a form variable is empty I use the empty() function. Is one way better than ...
3
votes
4answers
237 views

can I count on my compiler to optimize strlen on const char *?

In my SAX xml parsing callback (XCode 4, LLVM), I am doing a lot of calls to this type of code: static const char* kFoo = "Bar"; void SaxCallBack(char* sax_string,.....) { if ( ...
3
votes
7answers
425 views

Usage of fgets function in C

One of my assignments in to write my own UNIX Shell. To receive input from the user, I am using fgets to capture the input as a string but I'm not really sure how it works. When I run: char ...
3
votes
3answers
385 views

PHP String Length Without strlen()

Just browsing over the latest release of the PHP coding standards, and something caught my eye: http://svn.php.net/viewvc/php/php-src/trunk/CODING_STANDARDS?revision=296679&view=markup Coding ...
3
votes
3answers
2k views

c++ , getting the length of an array using strlen in g++ compiler

could someone explain why i am getting this error when i am compiling the source using following g++ compiler #include <cstdio> #include <string> using namespace std; int main() { ...
2
votes
2answers
173 views

Valgrind errors on simple C string functions

Let's consider this simple test program: #include <stdio.h> #include <string.h> int main(int argc, char *argv[]) { char buf[256]; int i; strcpy(buf,"Hello ...
2
votes
2answers
90 views

Problem with string - lenght is not correct - some chars included not displayed

I wanted to upgrade the Magento Ogone module to match the new SHASign calculation. It's working fine now but there is a problem ... I have an issue with some strings returned by a Magento method : ...
2
votes
7answers
268 views

Different ways to calculate string length

A comment on one of my answers has left me a little puzzled. When trying to compute how much memory is needed to concat two strings to a new block of memory, it was said that using snprintf was ...
2
votes
7answers
250 views

PHP Insert Multiple Spaces

I've got some data that needs to be cleaned up into a fixed length format. I'm using PHP to grab the data out, covert it, and put it back in, but it's not working as planned. There is a certain point ...
2
votes
6answers
411 views

strlen in assembly

I made my own implementation of strlen in assembly, but it doesn't return the correct value. It returns the string length + 4. Consequently. I don't see why.. and I hope any of you do... Assembly ...
2
votes
2answers
520 views

C strings, strlen and Valgrind

I'm trying to understand why Valgrind is spitting out : ==3409== Invalid read of size 8 ==3409== at 0x4EA3B92: __GI_strlen (strlen.S:31) whenever I'm applying strlen on a dynamically allocated ...
2
votes
4answers
839 views

PHP strlen question

Ok I am checking that a string is at least 4 characters long and 25 or less characters short I tried to use strlen like this $userNameSignupLength = strlen($userNameSignup); else ...
2
votes
11answers
1k views

Is there a difference between $str == '' and strlen($str) == 0 in PHP?

As the title says: Is there a difference between $str == '' and strlen($str) == 0 in PHP? Is there any real speed difference and is one better to use than the other?
1
vote
3answers
42 views

Counting length of string with HTML numbered entities in PHP

I would like to count the length of a string with PHP. The string contains HTML entity numbers, which inflate the number of characters that are counted: a dash is &#8211; which is counted as 7 ...
1
vote
3answers
133 views

strlen inconsistent with zero length string

I'm creating a DataStage parallel routine, which is a C or C++ function that is called from within IBM (formerly Ascential) DataStage. It is failing if one of the strings passed in is zero length. If ...
1
vote
4answers
69 views

get strlen after memcpy in c++

i`m trying to concatenate a characters using memcpy function, however, i kinda get a weird length of my buffer after couple of memcpy. please see code below int main() { uint8 txbuffer[13]={0}; uint8 ...
1
vote
3answers
117 views

strlen function giving wrong value

hello every one I have written code char sentence[100]; scanf("%s" ,sentence); char * ptrs = sentence ; printf("%d", strlen(ptrs)); suppose I enter john is a boy the strlen() function is ...
1
vote
1answer
96 views

What is the difference between mblen and strlen?

What is the difference between mblen and strlen? Is today multi-byte character encoding used in Windows, Linux or Mac OS? Is multi-byte character encoding same as fixed-width character encoding in ...
1
vote
2answers
51 views

PHP string formatting (substr)

I have a function that outputs a path, here are some results: http://server.com/subdirectory/subdiretory/2021/12/file.txt http://server.com/subdirectory/subdiretory/something/else/2016/16/file.txt ...
1
vote
3answers
85 views

how to limit search box words in php

php How to limit words in a search box? I want limit words within 30 words and do not broken the phrase. I think it should combine strlen and explode, but how to? and how to notice the custom when he ...
1
vote
1answer
136 views

Really simple PHP strlen/if question

I am trying to take 2 strings, see what length they are, and if one is larger than the other, set it as $phonenumber, and the other as $extension. See below: if(strlen($temp_ext) > 4) { ...
1
vote
4answers
111 views

PHP - how to truncate a string formed by a foreach loop?

Say I have the following loop in my view foreach ($value as $row): echo $row['name'] . ', '; endforeach; This outputs a string like this in my browser Geddy, Lee, Neil, Peart, Alex, I ...
1
vote
4answers
103 views

Simple substr and strlen question…I'm going crazy

Ok, so looking at this code: $accountMask = substr($transaction['cc_number'], strlen($transaction['cc_number'])-4); I think it takes a number like this: 1234567890 And turns it into this: 123456 ...
1
vote
4answers
99 views

Strlen to strip every [x] characters

I'm trying strip every third character (in the example a period) below is my best guess and is close as ive gotten but im missing something, probably minor. Also would this method (if i could get it ...
1
vote
2answers
185 views

c++0x char16_t strlen equivalent function

I have a simple question: is there a way to do a strlen-like count of characters in zero terminated char16_t array?
1
vote
7answers
267 views

Why strlen function works without #include<string.h>?

Quick question: strlen[char*] works perfectly regardless whether I #include <string.h> or not All I get from compiler is a warning about implicit declaration, but functionally it works as ...
1
vote
4answers
1k views

Function to check if string length in greater than or less than required amount

I want to create a function to check if the length of a string is greater than or less than a required amount: Something like this: function check_string_lenght($string, $min, $max) { if ($string ...
1
vote
4answers
423 views

Checking string length, max and minimum

Is there a function to check if a string is too long or too short, I normally end up writing something like this in several places: if (strlen($input) < 12) { echo "Input is too short, minimum ...
1
vote
5answers
97 views

php strlen range function

Im trying to write an if function which checks the width of an image, and then apply a css class. I want the function to work like this if image is in an range from 150px to 189px, apply css class ...
1
vote
2answers
245 views

strlen() Refuses to Read String from struct hostent * (SOLVED)

I've been working through a small tutorial on how to build a basic packet sniffer for Linux. I got everything working, and I now want to add IP-to-host mapping. Everything was working before I added ...
1
vote
3answers
425 views

PHP: get remote file size with strlen? (html)

I was looking at PHP docs for fsockopen and whatnot and they say you can't use filesize() on a remote file without doing some crazy things with ftell or something (not sure what they said exactly), ...
1
vote
4answers
452 views

Is a strlen call in snprintf causing this segfault?

I have a void *, call it data, whose length I know, but is not null terminated. I make a call like this snprintf(line, sizeof(line), "%*s", n, (const char*)data) where n is the known length. Almost ...
1
vote
5answers
474 views

My jQuery and PHP give different results on the same thing?

Annoying brain numbing problem. I have two functions to check the length of a string (primarily, the js one truncates as well) heres the one in Javascript: ...
1
vote
6answers
2k views

How do I find the number of bytes within UTF-8 string with PHP?

I have the following function from the php.net site to determine the # of bytes in an ASCII and UTF-8 string: <?php /** * Count the number of bytes of a given string. * Input string is ...
1
vote
3answers
75 views

Trouble using strlen method and another newbie question

Here's my PHP code: <html> <Head> <?php $FirstName="Sergio"; $LastName="Tapia"; $firstNameCount=strlen($Firstname); ?> ...
1
vote
5answers
3k views

strlen() implementation in gcc

Can anyone point me to the definition of strlen() in GCC? I've been grepping release 4.4.2 for about a half hour now (while Googling like crazy) and I can't seem to find where strlen() is actually ...
1
vote
3answers
289 views

Parse PHP String Based On Number of Characters

I'm starting to work on a small script that takes a string, counts the number of characters, then, based on the number of characters, splits/breaks the string apart and sends/emails 110 characters at ...
0
votes
2answers
38 views

PHP strlen() and width of string

Not sure if there's a php function that can help determine this. I have some strings with variable characters. My problem is how long the string is, not how many characters there are. $str1 = ...
0
votes
2answers
82 views

How I can insert a <br> tag every 115 characters

How can I insert a <br> tag every 115 characters? Which solution is better: strlen or regex? How I can accomplish this? Better to understand, how was made the comment section in stage6. ...
0
votes
1answer
34 views

PHP strpos and strlen

I'm trying to get words before and after a string in a $body thats taken from a mysql entry. I'm able to find the keyword in the body, get its strpos and its strlen. From there I believe I should be ...
0
votes
5answers
106 views

Why is variable length array forbidden: “C90 forbids variable length array”?

I know that I'm not supposed to do this in C90, and it's a rather basic stuff. char name[strlen(s)]; ArrayLength.c:11: warning: ISO C90 forbids variable length array ‘name’ Did they want me to ...
0
votes
4answers
58 views

check for strings that are at least 1 character long

I often see strlen used. Are these 2 tests equivalent for all values of $str? is_string($str) && 0 !== strlen($str) is_string($str) && '' !== $str

1 2