Ignore:
Timestamp:
07/21/06 14:47:49 (18 years ago)
Author:
navarro
Message:

english and nicer header (2a)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/STRING/strright.pro

    r134 r142  
    1 ; $Id$ 
    21;------------------------------------------------------------- 
    32;+ 
    4 ; NAME: 
    5 ;        STRRIGHT 
    63; 
    7 ; PURPOSE: 
    8 ;        return right subportion from a string 
     4; @file_comments 
     5; return right subportion from a string 
    96; 
    10 ; CATEGORY: 
    11 ;        string handling  
     7; @categories 
     8; string handling  
     9;  
     10; @param S {in}{required} 
     11; the string to be searched 
    1212; 
    13 ; CALLING SEQUENCE: 
    14 ;        res = STRRIGHT(string [,nlast]) 
     13; @param LASTN {in}{required} 
     14; the number of characters to be returned. Default 
     15; is 1. If NLAST is ge strlen(STRING), the complete string 
     16; is returned. 
    1517; 
    16 ; INPUTS: 
    17 ;        STRING --> the string to be searched 
     18; @returns 
     19; The portion of LASTN characters of S counted from the back. 
    1820; 
    19 ;        NLAST --> the number of characters to be returned. Default 
    20 ;           is 1. If NLAST is ge strlen(STRING), the complete string 
    21 ;           is returned. 
     21; @examples 
     22; if (strright(path) ne '/') then path = path + '/' 
    2223; 
    23 ; KEYWORD PARAMETERS: 
     24; @history 
     25;        mgs, 19 Nov 1997: VERSION 1.00 
    2426; 
    25 ; OUTPUTS: 
    26 ;        The portion of NLAST characters of STRING counted from the back. 
    27 ; 
    28 ; SUBROUTINES: 
    29 ; 
    30 ; REQUIREMENTS: 
    31 ; 
    32 ; NOTES: 
    33 ; 
    34 ; EXAMPLE: 
    35 ;        if (strright(path) ne '/') then path = path + '/' 
    36 ; 
    37 ; MODIFICATION HISTORY: 
    38 ;        mgs, 19 Nov 1997: VERSION 1.00 
     27; @version 
     28; $Id$ 
    3929; 
    4030;- 
Note: See TracChangeset for help on using the changeset viewer.