Sponsored Content
Full Discussion: regarding string length
Top Forums Programming regarding string length Post 302242466 by amitpansuria on Thursday 2nd of October 2008 02:22:27 AM
Old 10-02-2008
string comparation problem

I m doing programming in c using linux.

I have one character array filename of 126 size.

now during developping my module I have situation where
I got filename = " ",`\0`

Now I want to check for this condtion

I have try following option but it didnot work

(1)
int len;
if (filename == " ",`\0` )
{
len =0;
}

(2) int len;

if ( strcmp(filename, " " ",`\0`") )
{
len = 0;
}

both method are not working

can you tell me how do I check filename = " ",`\0' condition

Regards,
Amit
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

length of string

How one can measure the length of a string but not with the help of awk utility Can we write shell script for the same ? (2 Replies)
Discussion started by: dilipluhar
2 Replies

2. UNIX for Dummies Questions & Answers

length of the string

Hi all, pls help me in finding the length of the given string, do we need to write a code seperately or is there any command?? pls help. (3 Replies)
Discussion started by: vasikaran
3 Replies

3. Shell Programming and Scripting

String length in ksh

Hi all, I have tried the following simple code in ksh. (length.sh) #! /usr/bin/ksh var="xxxxxx0987890" echo stringlength is ${#var} but this gives me a error saying "length.sh: bad substitution" Can some one please help me in resolving this. (4 Replies)
Discussion started by: ssgrpid
4 Replies

4. Shell Programming and Scripting

sed problem - replacement string should be same length as matching string.

Hi guys, I hope you can help me with my problem. I have a text file that contains lines like this: 78 ANGELO -809.05 79 ANGELO2 -5,000.06 I need to find all occurences of amounts that are negative and replace them with x's 78 ANGELO xxxxxxx 79... (4 Replies)
Discussion started by: amangeles
4 Replies

5. Shell Programming and Scripting

read string, check string length and cut

Hello All, Plz help me with: I have a csv file with data separated by ',' and optionally enclosed by "". I want to check each of these values to see if they exceed the specified string length, and if they do I want to cut just that value to the max length allowed and keep the csv format as it... (9 Replies)
Discussion started by: ozzy80
9 Replies

6. UNIX for Dummies Questions & Answers

length of string

Hi lets say i have a variable output="string" how can you find the length of the string contained in this variable? i guess "wc" cannot be used. its only for files. (8 Replies)
Discussion started by: silas.john
8 Replies

7. UNIX for Dummies Questions & Answers

Read a string with leading spaces and find the length of the string

HI In my script, i am reading the input from the user and want to find the length of the string. The input may contain leading spaces. Right now, when leading spaces are there, they are not counted. Kindly help me My script is like below. I am using the ksh. #!/usr/bin/ksh echo... (2 Replies)
Discussion started by: dayamatrix
2 Replies

8. Shell Programming and Scripting

String with different length

let image that we have string: QQQQQQQ:ABCDE:FFFFFF:GGGGG in second field can be 0 or 5 characters if A exist i need set variable ex: VAR=yes if B exist i need set variable ex: VAR1=yes if C exist i need set variable ex: VAR2=yes etc ... if second field is empty no variable to set if... (4 Replies)
Discussion started by: vikus
4 Replies

9. Shell Programming and Scripting

String Length

Hi All, One of my source file is having Date column and the format of the column is YYYY-MM-DD. As per my business logic I have to check if the date format either YYY-MM-DD or YYYY-M-DD. If any records are in this format then I have print all the records and send those invalid records through... (4 Replies)
Discussion started by: suresh_target
4 Replies

10. Shell Programming and Scripting

Determining length of string

I have this script which is very easy: file=`echo 01114` echo $file 01114 then I ran this if ; then echo "yes";fi it returned yes even though there are only 5 digits there So then I tried file=`echo abcd` echo $file abcd if ]; then echo "yes";fi if ]; then echo "yes";fi It... (2 Replies)
Discussion started by: newbie2010
2 Replies
ZIPARCHIVE(3)								 1							     ZIPARCHIVE(3)

The ZipArchive class

INTRODUCTION
A file archive, compressed with Zip. CLASS SYNOPSIS
ZipArchive ZipArchive Properties o int$status o int$statusSys o int$numFiles o string$filename o string$comment Methods o bool ZipArchive::addEmptyDir (string $dirname) o bool ZipArchive::addFile NULL (string $filename, [string $localname], [int $start], [int $length]) o bool ZipArchive::addFromString (string $localname, string $contents) o bool ZipArchive::addGlob (string $pattern, [int $flags], [array $options = array()]) o bool ZipArchive::addPattern (string $pattern, [string $path = "."], [array $options = array()]) o bool ZipArchive::close (void ) o bool ZipArchive::deleteIndex (int $index) o bool ZipArchive::deleteName (string $name) o bool ZipArchive::extractTo (string $destination, [mixed $entries]) o string ZipArchive::getArchiveComment ([int $flags]) o string ZipArchive::getCommentIndex (int $index, [int $flags]) o string ZipArchive::getCommentName (string $name, [int $flags]) o bool ZipArchive::GetExternalAttributesIndex (int $index, int &$opsys, int &$attr, [int $flags]) o bool ZipArchive::getExternalAttributesName (string $name, int &$opsys, int &$attr, [int $flags]) o string ZipArchive::getFromIndex (int $index, [int $length], [int $flags]) o string ZipArchive::getFromName (string $name, [int $length], [int $flags]) o string ZipArchive::getNameIndex (int $index, [int $flags]) o string ZipArchive::getStatusString (void ) o resource ZipArchive::getStream (string $name) o int ZipArchive::locateName (string $name, [int $flags]) o mixed ZipArchive::open (string $filename, [int $flags]) o bool ZipArchive::renameIndex (int $index, string $newname) o bool ZipArchive::renameName (string $name, string $newname) o bool ZipArchive::setArchiveComment (string $comment) o bool ZipArchive::setCommentIndex (int $index, string $comment) o bool ZipArchive::setCommentName (string $name, string $comment) o bool ZipArchive::setExternalAttributesIndex (int $index, int $opsys, int $attr, [int $flags]) o bool ZipArchive::setExternalAttributesName (string $name, int $opsys, int $attr, [int $flags]) o public bool ZipArchive::setPassword (string $password) o array ZipArchive::statIndex (int $index, [int $flags]) o array ZipArchive::statName (string $name, [int $flags]) o bool ZipArchive::unchangeAll (void ) o bool ZipArchive::unchangeArchive (void ) o bool ZipArchive::unchangeIndex (int $index) o bool ZipArchive::unchangeName (string $name) PROPERTIES
o $status -Status of the Zip Archive o $statusSys -System status of the Zip Archive o $numFiles -Number of files in archive o $filename -File name in the file system o $comment -Comment for the archive PHP Documentation Group ZIPARCHIVE(3)
All times are GMT -4. The time now is 06:22 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy