lxqstr |
Table of contents
ProcedureLXQSTR ( Lex quoted string ) SUBROUTINE LXQSTR ( STRING, QCHAR, FIRST, LAST, NCHAR ) AbstractScan (lex) a quoted string. Required_ReadingNone. KeywordsCHARACTER PARSING SCANNING STRING UTILITY DeclarationsIMPLICIT NONE CHARACTER*(*) STRING CHARACTER*(1) QCHAR INTEGER FIRST INTEGER LAST INTEGER NCHAR Brief_I/OVARIABLE I/O DESCRIPTION -------- --- -------------------------------------------------- STRING I String to be scanned. QCHAR I Quote delimiter character. FIRST I Character position at which to start scanning. LAST O Character position of end of token. NCHAR O Number of characters in token. Detailed_InputSTRING is a character string that may contain a `string token' starting at the character position indicated by the input argument FIRST (see below). String tokens are sequences of characters that represent literal strings. Syntactically, a string token is a sequence of characters that begins and ends with a designated `quote character'. Within the token, any occurrence of the quote character is indicated by an adjacent pair of quote characters: for example, if the quote character is " then the token representing one instance of this character is """" Here the first quote indicates the beginning of the token, the next two quotes together indicate a single quote character that constitutes the `contents' of the token, and the final quote indicates the end of the token. QCHAR is the quote character. This is always a single character. The characters " and ' are common choices, but any non-blank character is accepted. Case *is* significant in QCHAR. FIRST is the character position at which the routine is to start scanning a quoted string token. Note that the character STRING(FIRST:FIRST) must equal QCHAR if a string token is to be found; this routine does *not* attempt to locate the first quoted string following the position FIRST. Detailed_OutputLAST is the last character position such that the substring STRING(FIRST:LAST) is a quoted string token, if such a substring exists. Otherwise, the returned value of LAST is FIRST-1. NCHAR is the length of the string token found by this routine, if such a token exists. This length includes the starting and ending bracketing quotes. If a string token is not found, the returned value of NCHAR is zero. ParametersNone. ExceptionsError free. 1) If the input argument FIRST is less than 1 or greater than LEN(STRING)-1, the returned value of LAST is FIRST-1, and the returned value of NCHAR is zero. 2) It is not an error for a quoted string token to consist of two consecutive quote characters with no intervening characters. Calling routines that require special treatment of null tokens must handle this case. 3) If the input argument QCHAR is blank, the returned value of LAST is FIRST-1, and the returned value of NCHAR is zero. FilesNone. ParticularsQuote characters may be ANY non-blank character. For example, the ampersand & is a perfectly valid quote character. If we were using the ampersand as the quote character, then the term `doubled quote' in the following discussion would refer to the sequence && not the character " The string tokens identified by this routine are Fortran-style quoted strings: they start and end with quote characters. In the interior of any such token, any quote characters are represented by doubled quote characters. These rules imply that the number of quote characters in a quoted string token is always even. The end of a quoted string token is located at the first even-numbered quote character, counting from the initial quote character, that is not the first member of a pair of quotes indicating an embedded quote character. To map the token to the string of characters it represents, use the SPICELIB subroutine PARSQS (String parse, quoted). PARSQS removes the bracketing quotes from a quoted string token and converts each doubled quote between the bracketing quotes to a single quote. For example, the token """" identified by this routine would be mapped by PARSQS to a string variable containing the single character " Examples1) The table below illustrates the action of this routine. STRING CONTENTS QCHAR FIRST LAST NCHAR ========================================================== The "SPICE" system " 5 11 7 The "SPICE" system " 1 0 0 The "SPICE" system ' 5 4 0 The """SPICE"" system" " 5 22 18 The """SPICE"""" system " 5 15 11 The &&&SPICE system & 5 6 2 ' ' ' 1 3 3 '' ' 1 2 2 RestrictionsNone. Literature_ReferencesNone. Author_and_InstitutionN.J. Bachman (JPL) J. Diaz del Rio (ODC Space) VersionSPICELIB Version 1.1.0, 13-AUG-2021 (JDR) Added IMPLICIT NONE statement. Edited the header to comply with NAIF standard. SPICELIB Version 1.0.1, 25-FEB-2002 (NJB) Corrected references to other SPICELIB routines in header. SPICELIB Version 1.0.0, 20-OCT-1994 (NJB) |
Fri Dec 31 18:36:33 2021