SRI Technologies

Last Modified
Date: 11-Dec-2005
Time: 03:03:59
Index

Project Name: Gamma Project
System Name: Demonstration System
Application Name: Demo Application
Source File: DEMOSTR.SQC
Shared Code Name: String Procedures
Description: SQC to define commonly used string procedures
Author: Str S

Procedure Index:
Sl.NoProcedureDescription
1 STR-LTRIMLeft Trim
2 STR-RTRIMRight Trim
3 STR-TRIMLeft and Right Trim

Program Change Log:
Sl.NODateAuthorRemark
1.10-Mar-1999Scott.MCreation
2.15-Feb-2002Scott.MIntroduced SqrPlus Documentation


Database Tables:
SLNO.Table NameAccess ModeProcedure NameRemarks
1NoneN/AN/ANot Applicable

Include Files:

  1. None

See Also:

  1. None

Procedures:

  1. Procedure Name: STR-LTRIM
    Procedure Description: Left Trim
    Procedure Type: Local

    Arguments/Parameter:
    SLNO.VariableMode
    1$STRBy Reference
    2$CASEBy Value

    Database Tables:
    SLNO.Table NameAccess ModeRemarks
    1NoneN/ANot Applicable

    Processing:

    Trim Leading blank characters

    1. Use ltrim function to trim teading spaces.
    2. Convert to upper case if specified.

    See Also:

    1. STR-Rtrim

  2. Procedure Name: STR-RTRIM
    Procedure Description: Right Trim
    Procedure Type: Local

    Arguments/Parameter:
    SLNO.VariableMode
    1$STRBy Reference
    2$CASEBy Value

    Database Tables:
    SLNO.Table NameAccess ModeRemarks
    1NoneN/ANot Applicable

    Processing:

    Trim Trailing blank characters

    1. Use rtrim function to trim teading spaces.
    2. Convert to upper case if specified.

    See Also:

    1. STR-Ltrim

  3. Procedure Name: STR-TRIM
    Procedure Description: Left and Right Trim
    Procedure Type: Local

    Arguments/Parameter:
    SLNO.VariableMode
    1$STRBy Reference
    2$CASEBy Value

    Database Tables:
    SLNO.Table NameAccess ModeRemarks
    1NoneN/ANot Applicable

    Processing:

    Trim Trailing blank characters

    1. Use STR-Ltrim and STR-Rtrim procedures to trim teading and trailing spaces.
    2. Convert to upper case if specified.

    See Also:

    1. STR-Ltrim
    2. STR-Rtrim