icon
Search ! Aware:



     ! Aware > Perl > Text Strings > NUL Terminated String processing >

NUL Terminated String processing

NUL terminated string operations (strcpy, strlen, etc)
- Q&A - Libs & Functions - Other Resources - Related Subjects -
Personalized Selections
Platform: MS Windows. Unix/BSD/Linux. X.
License: Open-source. GPL or LGPL.
Prog.Language: Perl. C/C++. Java. PHP.
Maturity: Stable. Pre-production.
Pre-Selections

Use our system: Bring Rapid Knowledge Transfer and Awareness to your company website!


Home
  By TONY
  By MARK
  By JERRY
  By ANN
  By ERICA

Search all pages


Subjects

By activity
Professions, Sciences, Humanities, Business, ...

User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...

Text Strings
Conversions, tests, processing, manipulation,...

Math
Integer, Floating point, Matrix, Statistics, Boolean, ...

Processing
Algorithms, Memory, Process control, Debugging, ...

Stored Data
Data storage, Integrity, Encryption, Compression, ...

Communications
Networks, protocols, Interprocess, Remote, Client Server, ...

Hard World
Timing, Calendar and Clock, Audio, Video, Printer, Controls...

File System
Management, Filtering, File & Directory access, Viewers, ...

    
Related Subjects (Perl)

NUL terminated String Comparison and Search covers functions for comparing strings, finding characters within strings, et al.

See also: String-Integer-String conversions - Converting strings to and from integers. ascii to long, long to ascii, etc.

See also: String-Non-Integer-String conversions (conversion to and from floating point, time, dates, et al.)

See also: Host, service name, and address operations - Methods and functions for doing address, host, user, and service name lookups. also Internet Assigned Numbers

See also: File Path Name Strings - Operations on hierarchical names (paths, files, identifiers)

See also: Text Output - generating text and character output.

See also: File filtering and processing - Methods of filtering and processing files. (character translation, comparison, search, word counts, etc.)

Up to Text Strings - Gateway topic to character and string processing routines. NUL Terminated String processing String conversions,et al. ascii to long, long to

(There may be additional related subject pages listed here)


Questions and Answers: Showing
Q & A
++Showing+-
For Perl
+Partial-
For Programmers
+-Hiding all--
from comp.lang.c
Ask Slashdot

How do I unescape a string?

Perl FAQ

How do I remove consecutive pairs of characters?

Perl FAQ

How do I find matching/nesting anything?

Perl FAQ

How do I reverse a string?

Perl FAQ

How do I expand tabs in a string?

Perl FAQ

How do I reformat a paragraph?

Perl FAQ

How can I access/change the first N letters of a string?

Perl FAQ

How do I change the Nth occurrence of something?

Perl FAQ

How can I count the number of occurrences of a substring within a string?

Perl FAQ

How do I capitalize all the words on one line?

Perl FAQ

How can I split a [character] delimited string except when inside

Perl FAQ

How do I strip blank space from the beginning/end of a string?

Perl FAQ

How do I extract selected columns from a string?

Perl FAQ

How do I find the soundex value of a string?

Perl FAQ

How do I process each word on each line?

Perl FAQ

How do I remove HTML from a string?

Perl FAQ

See Also

Full List of Questions and Answers

Libraries and Components: Showing
Libs and Functions
++Showing+-
From CPAN
For Perl
in Perl
+Partial-
Open Source
+-Hiding all--
For Unix/BSD/Linux
man pages
comp.sources.unix
Snippets
in C/C++
in PHP
Pre-production stages

(Perl builtin function) chomp VARIABLE This is a slightly safer version of chop.

(Perl builtin function) chop VARIABLE Chops off the last character of a string.

(Perl builtin function) join EXPR,LIST Joins the separate strings of LIST into a single string with fields separated by the value of EXPR.

(Perl builtin function) length EXPR Returns the length in characters of the value of EXPR.

(Perl builtin function) quotemeta EXPR Returns the value of EXPR with all non-alphanumeric characters backslashed.

(Perl builtin function) reverse LIST Returns elements of a LIST or characters of a scalar in the opposite order.

(Perl builtin function) s/// The substitution operator. See the perlop manpage.

(Perl builtin function) split /PATTERN/,EXPR,LIMIT Splits a string into an array of strings, and returns it.

(Perl builtin function) sprintf FORMAT, LIST Returns a string formatted by the usual printf conventions of the C library function sprintf(). See sprintf(3) or printf(3) on your system for an

(Perl builtin function) substr EXPR,OFFSET,LEN Extracts a substring out

(Perl builtin function) tr/// The translation operator. Same as y///. See the perlop manpage.

(Perl builtin function) uc EXPR Returns an uppercased version of EXPR.

(Perl builtin function) ucfirst EXPR Returns the value of EXPR with the first character uppercased.

(Perl builtin function) y/// The translation operator. Same as tr///. See the perlop manpage.

String::Parity - Parity functions for strings. In an ideal world, this module would be obsolete, because everything would be 8-bit clean and strings would use one of the 8 bit ISO character sets if not UNICODE. But some prehistoric device called "modems" still use [Perl] {oss}

At CPAN

String::ShellQuote - Quotes strings for safe passage through shells. [Perl] {oss}

At CPAN

Text::StripHigh - Converts eight-bit characters to seven bits. [Perl] {oss}

At CPAN

stem.pl - Not a module, but a library file. stem.pl performs text stemming -- finding the "root word." For instance, the stem of "walked" is "walk", and the stem of "stemming" is "stem". stem.pl is in the Text:: module set. [Perl] {oss}

At CPAN

TeX::Hyphen - uses TeX's hyphenation table to hyphenate words. You don't need TeX to use the module. [Perl] {oss}

At CPAN

The Text-Tabs+Wrap Bundle contains Text::Tabs and Text::Wrap, both described below. [Perl] {oss}

At CPAN

Text::German - Stems German words. Also see stem.pl. [Perl] {oss}

At CPAN

Text::Tabs - In a document, you can replace multiple spaces with tabs, or tabs with multiple spaces, just like the Unix "expand" and "unexpand" utilities. Part of the Text-Tabs+Wrap bundle. [Perl] {oss}

At CPAN

Text::Template - This module defines a "template" as a chunk of text with cute little Perl expressions embedded in it. You can use this module to replace the expressions with their values. [Perl] {oss}

At CPAN

Text::Vpp - A "versatile preprocessor" for text; it lets you embed variables and conditionals in your file. [Perl] {oss}

At CPAN

Text::Wrap - Line wrapping and paragraph reformatting. Part of the Text-Tabs+Wrap bundle. [Perl] {oss}

At CPAN

Text::Trie - Given a list of strings, returns their common heads and tails. [Perl] {oss}

At CPAN

Cz - Tools for manipulating Czech text. [Perl] {oss}

At CPAN

No - Tools for manipulating Norwegian text. [Perl] {oss}

At CPAN

Unicode - Support for the Unicode standard character sets. A future release of Perl will probably support Unicode in the core in such a way that this module will be obsolete. [Perl] {oss}

At CPAN

Other Libraries, Functions, and Components

Full List
in Planning, Alpha, or Beta stages

Detailed Filter and Focus Checklist

Default Selections
- man pages - Open Source
Questions and Answers: All
Add+Showing+Hide
For Perl
AddPartialHide
For Programmers
Add-Hiding all-Hide
from comp.lang.c
Ask Slashdot

Applications and Utilities: All
Add-Hiding all-Hide
For Windows
For Unix/BSD/Linux
For X
comp.sources.unix
Open Source
GPL licensed
in C/C++
in Java
Pre-production stages

Libraries, Functions, and Components: All
Add+Showing+Hide
For Perl
in Perl
AddPartialHide
Open Source
Add-Hiding all-Hide
For Unix/BSD/Linux
man pages
comp.sources.unix
Snippets
in C/C++
in PHP
Pre-production stages

Related Categories on other Web Sites


Rapid-Links: Search | About | Comments | Submit Path: RocketAware > Text Strings > NUL Terminated String processing >
RocketAware.com is a service of Mib Software
Copyright 2001, Forrest J. Cavalier III. All Rights Reserved.
We welcome submissions and comments