Document revision date: 19 July 1999 | |
Order Number: AA--PV6MC--TK
This manual documents the string manipulation routines contained in the STR$ facility of the OpenVMS Run-Time Library.
Revision/Update Information: This manual supersedes the OpenVMS RTL String Manipulation (STR$) Manual, OpenVMS Alpha Version 7.0 and OpenVMS VAX Version 7.0.
Software Version: OpenVMS Alpha Version 7.1 OpenVMS VAX Version 7.1 The content of this document has not changed since OpenVMS Version 7.1.
Compaq Computer Corporation
Houston, Texas
Compaq Computer Corporation makes no representations that the use of its products in the manner described in this publication will not infringe on existing or future patent rights, nor do the descriptions contained in this publication imply the granting of licenses to make, use, or sell equipment or software in accordance with the description.
Possession, use, or copying of the software described in this publication is authorized only pursuant to a valid written license from Compaq or an authorized sublicensor.
Compaq conducts its business in a manner that conserves the environment and protects the safety and health of its employees, customers, and the community.
© Compaq Computer Corporation 1999. All rights reserved.
The following are trademarks of Compaq Computer Corporation: AXP, Bookreader, DEC, DECdirect, DECtalk, DECthreads, DECwindows, Digital, OpenVMS, OpenVMS Cluster, VAX, VAX DOCUMENT, VAXcluster, VMS, VMScluster, and the Compaq logo.
The following are third-party trademarks:
Motif, OSF, OSF/1, OSF/Motif, and Open Software Foundation are registered trademarks of the Open Software Foundation, Inc.
All other trademarks and registered trademarks are the property of their respective holders.
ZK5936
The OpenVMS documentation set is available on CD-ROM.
This document was prepared using VAX DOCUMENT, Version V3.2n.
Contents | Index |
This manual provides users of the OpenVMS operating system with detailed usage and reference information about the string manipulation routines supplied in the STR$ facility of the Run-Time Library.
This manual is intended for system and application programmers who write programs that call STR$ Run-Time Library routines.
This manual is organized into two parts as follows:
The Run-Time Library routines are documented in a series of reference manuals. A description of how the Run-Time Library routines are accessed is presented in OpenVMS Programming Interfaces: Calling a System Routine. A description of OpenVMS features and functionality available through calls to the STR$ Run-Time Library appears in the OpenVMS Programming Concepts Manual. Descriptions of other RTL facilities and their corresponding routines and usages are discussed in the following books:
The Guide to DECthreads contains guidelines and reference information for DECthreads, the Digital Multithreading Run-Time Library.
The OpenVMS Calling Standard contains useful information for anyone who wants to call Run-Time Library routines.
Application programmers using any programming language can refer to the Guide to Creating OpenVMS Modular Procedures for writing modular and reentrant code.
High-level language programmers will find additional information on calling Run-Time Library routines in their language reference manual. Additional information may also be found in the language user's guide provided with your OpenVMS language software.
For a complete list and description of the manuals in the OpenVMS documentation set, see the Overview of OpenVMS Documentation.
For additional information on the Open Systems Software Group (OSSG) products and services, access the following OpenVMS World Wide Web address:
http://www.openvms.digital.com |
Compaq welcomes your comments on this manual.
Print or edit the online form SYS$HELP:OPENVMSDOC_COMMENTS.TXT and send us your comments by:
Internet | openvmsdoc@zko.mts.dec.com |
Fax | 603 884-0120, Attention: OSSG Documentation, ZKO3-4/U08 |
Compaq Computer Corporation
OSSG Documentation Group, ZKO3-4/U08 110 Spit Brook Rd. Nashua, NH 03062-2698 |
Use the following World Wide Web address to order additional documentation:
http://www.openvms.digital.com:81/ |
If you need help deciding which documentation best meets your needs, call 800-344-4825.
The following conventions are used in this manual:
Ctrl/ x | A sequence such as Ctrl/ x indicates that you must hold down the key labeled Ctrl while you press another key or a pointing device button. |
PF1 x | A sequence such as PF1 x indicates that you must first press and release the key labeled PF1 and then press and release another key or a pointing device button. |
[Return] | In examples, a key name enclosed in a box indicates that you press a key on the keyboard. (In text, a key name is not enclosed in a box.) |
... |
A horizontal ellipsis in examples indicates one of the following
possibilities:
|
.
. . |
A vertical ellipsis indicates the omission of items from a code example or command format; the items are omitted because they are not important to the topic being discussed. |
( ) | In command format descriptions, parentheses indicate that, if you choose more than one option, you must enclose the choices in parentheses. |
[ ] | In command format descriptions, brackets indicate optional elements. You can choose one, none, or all of the options. (Brackets are not optional, however, in the syntax of a directory name in an OpenVMS file specification or in the syntax of a substring specification in an assignment statement.) |
{ } | In command format descriptions, braces indicate a required choice of options; you must choose one of the options listed. |
bold text | This text style represents the introduction of a new term or the name of an argument, an attribute, or a reason. |
italic text | Italic text indicates important information, complete titles of manuals, or variables. Variables include information that varies in system output (Internal error number), in command lines (/PRODUCER= name), and in command parameters in text (where device-name contains up to five alphanumeric characters). |
UPPERCASE TEXT | Uppercase text indicates a command, the name of a routine, the name of a file, or the abbreviation for a system privilege. |
Monospace text |
Monospace type indicates code examples and interactive screen displays.
In the C programming language, monospace type in text identifies the following elements: keywords, the names of independently compiled external functions and files, syntax summaries, and references to variables or identifiers introduced in an example. |
- | A hyphen at the end of a command format description, command line, or code line indicates that the command or statement continues on the following line. |
numbers | All numbers in text are assumed to be decimal unless otherwise noted. Nondecimal radixes---binary, octal, or hexadecimal---are explicitly indicated. |
The material is structured as follows:
This chapter contains an overview of the STR$ facility and lists the
routines and their functions. Chapter 2 explains in detail how the
STR$ facility handles strings. The STR$ Reference Section describes all the STR$
routines.
1.1 Overview
The STR$ facility provides routines to perform the following functions:
Routine Name | Function |
---|---|
STR$ADD | Add two decimal strings |
STR$DIVIDE | Divide two decimal strings |
STR$MUL | Multiply two decimal strings |
STR$RECIP | Return the reciprocal of a decimal string |
STR$ROUND | Round or truncate a decimal string |
Routine Name | Function |
---|---|
STR$CASE_BLIND_COMPARE | Compare strings without regard to case |
STR$COMPARE | Compare two strings |
STR$COMPARE_EQL | Compare two strings for equality |
STR$COMPARE_MULTI | Compare two strings for equality using the DEC Multinational Character Set |
Routine Name | Function |
---|---|
STR$ELEMENT | Extract delimited element substring |
STR$LEFT | Extract a substring of a string |
STR$LEN_EXTR | Extract a substring of a string |
STR$POS_EXTR | Extract a substring of a string |
STR$REPLACE | Replace a substring |
STR$RIGHT | Extract a substring of a string |
Routine Name | Function |
---|---|
STR$APPEND | Append a string |
STR$CONCAT | Concatenate two or more strings |
STR$PREFIX | Prefix a string |
Routine Name | Function |
---|---|
STR$COPY_DX | Copy a source string passed by descriptor to a destination string |
STR$COPY_R | Copy a source string passed by reference to a destination string |
++STR$COPY_R_64 | Copy a source string passed by reference to a destination string |
Routine Name | Function |
---|---|
STR$FIND_FIRST_IN_SET | Find the first character in a set of characters |
STR$FIND_FIRST_NOT_IN_SET | Find the first character that does not occur in the set |
STR$FIND_FIRST_SUBSTRING | Find the first substring in the input string |
Routine Name | Function |
---|---|
STR$FREE1_DX | Free one dynamic string |
STR$GET1_DX | Allocate one dynamic string |
++STR$GET1_DX_64 | Allocate one dynamic string |
Routine Name | Function |
---|---|
STR$ANALYZE_SDESC | Analyze a string descriptor |
++STR$ANALYZE_SDESC_64 | Analyze a string descriptor |
STR$DUPL_CHAR | Duplicate character n times |
STR$MATCH_WILD | Match a wildcard specification |
STR$POSITION | Return relative position of a substring |
STR$TRANSLATE | Translate matched characters |
STR$TRIM | Trim trailing blanks and tabs |
STR$UPCASE | Convert string to all uppercase |
On Alpha systems, the String Manipulation (STR$) routines provide 64-bit virtual addressing capabilities as follows:
See the OpenVMS Alpha Guide to 64-Bit Addressing and VLM Features for more information about 64-bit virtual addressing capabilities.
Next | Contents | Index |
privacy and legal statement | ||
5936PRO.HTML |