cmprss_c |
Table of contents
Procedurecmprss_c ( Compress a character string ) void cmprss_c ( SpiceChar delim, SpiceInt n, ConstSpiceChar * input, SpiceInt outlen, SpiceChar * output ) AbstractCompress a character string by removing occurrences of more than N consecutive occurrences of a specified character. Required_ReadingNone. KeywordsASCII CHARACTER STRING Brief_I/OVARIABLE I/O DESCRIPTION -------- --- -------------------------------------------------- delim I Delimiter to be compressed. n I Maximum consecutive occurrences of delim. input I Input string. outlen I Available space in output string. output O Compressed string. Detailed_Inputdelim is the delimiter to be compressed out of the string. This may be any ASCII character. n is the maximum number of consecutive occurrences of delim that will be allowed to remain in the output string. input is the input string. outlen is the available space in the output string, counting the terminating null. `outlen' is typically the declared length of the output string. Detailed_Outputoutput is the output string. This is the input string with all occurrences of more than N consecutive delimiters removed. A null terminator will follow the last character of the string resulting from the compression. If `output' is not large enough to hold the compressed string, it is truncated on the right. The output string will always be null-terminated. `output' may overwrite `input'. ParametersNone. Exceptions1) If the output string length is too short to contain the result of compressing the input string, the result is truncated on the right. The output string is still null-terminated. 2) If the `input' input string pointer is null, the error SPICE(NULLPOINTER) is signaled. 3) If the `output' output string pointer is null, the error SPICE(NULLPOINTER) is signaled. 4) If the `output' output string has length less than one character, the error SPICE(STRINGTOOSHORT) is signaled. FilesNone. ParticularsOccurrences of more than `n' consecutive delimiters are removed from the input string as it is copied to the output string. If the output string is not large enough to hold the compressed string, it is truncated on the right. ExamplesThe numerical results shown for this example may differ across platforms. The results depend on the SPICE kernels used as input, the compiler and supporting libraries, and the machine specific arithmetic implementation. 1) Remove multiple occurrences of a character in different strings. As example, compress the occurrences of '.' down to two periods (..), three periods (...) or just one period (.). Also, as a practical example, remove trailing, leading and embedded spaces from an input string. Example code begins here. /. Program cmprss_ex1 ./ #include <stdio.h> #include "SpiceUsr.h" int main( ) { /. Local constants. ./ #define STRLEN 40 /. Local variables. ./ SpiceChar output [ STRLEN ]; /. Assign an array of input character strings to be compressed. ./ SpiceChar * strings[] = { "ABC...DE.F...", "...........", ".. ..AB....CD", " Embe dde d -sp a c es " }; /. Compress multiple occurrences of '.' in the strings array. Compress to two periods... ./ cmprss_c ( '.', 2, strings[0], STRLEN, output ); printf ( "Input : '%s'\n", strings[0] ); printf ( "Output: '%s'\n\n", output ); /. ...three periods... ./ cmprss_c ( '.', 3, strings[1], STRLEN, output ); printf ( "Input : '%s'\n", strings[1] ); printf ( "Output: '%s'\n\n", output ); /. ...one period. ./ cmprss_c ( '.', 1, strings[2], STRLEN, output ); printf ( "Input : '%s'\n", strings[2] ); printf ( "Output: '%s'\n\n", output ); /. Use the call to remove trailing, leading, and embedded spaces. ./ cmprss_c ( ' ', 0, strings[3], STRLEN, output ); printf ( "Input : '%s'\n", strings[3] ); printf ( "Output: '%s'\n", output ); return ( 0 ); } When this program was executed on a Mac/Intel/cc/64-bit platform, the output was: Input : 'ABC...DE.F...' Output: 'ABC..DE.F..' Input : '...........' Output: '...' Input : '.. ..AB....CD' Output: '. .AB.CD' Input : ' Embe dde d -sp a c es ' Output: 'Embedded-spaces' RestrictionsNone. Literature_ReferencesNone. Author_and_InstitutionN.J. Bachman (JPL) J. Diaz del Rio (ODC Space) W.L. Taber (JPL) I.M. Underwood (JPL) Version-CSPICE Version 1.1.0, 09-JUL-2021 (JDR) Changed the input argument name "lenout" to "outlen" for consistency with other routines. Edited the header to comply with NAIF standard. Added complete code example. -CSPICE Version 1.0.0, 20-AUG-1999 (WLT) (IMU) (NJB) Index_Entriescompress a character_string |
Fri Dec 31 18:41:03 2021