Index of Functions: A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X 
Index Page
cspice_repmi

Table of contents
Abstract
I/O
Parameters
Examples
Particulars
Exceptions
Files
Restrictions
Required_Reading
Literature_References
Author_and_Institution
Version
Index_Entries


Abstract


   CSPICE_REPMI replaces a marker with an integer.

I/O


   Given:

      in       an arbitrary character string.

               help, in
                  STRING = Scalar

      marker   an arbitrary character string.

               help, marker
                  STRING = Scalar

               The first occurrence of `marker' in the input string is to be
               replaced by `value'.

               Leading and trailing blanks in `marker' are NOT
               significant. In particular, no substitution is performed
               if `marker' is blank or empty.

      value    an arbitrary integer.

               help, value
                  LONG = Scalar

   the call:

      cspice_repmi, in, marker, value, out

   returns:

      out      the string obtained by substituting the text representation of
               `value' for the first occurrence of `marker' in the input
               string.

               help, out
                  STRING = Scalar

Parameters


   None.

Examples


   Any numerical results shown for this example may differ between
   platforms as the results depend on the SPICE kernels used as input
   and the machine specific arithmetic implementation.

   1) The following example illustrate the use of cspice_repmi to
      replace a marker within a string with the text representation
      of an integer value.


      Example code begins here.


      PRO repmi_ex1

         ;;
         ;; 1. Single marker
         ;;
         marker = '#'
         instr  = 'Invalid value. The value was:  #'

         cspice_repmi, instr, marker, 75L, outstr

         print, 'Case 1: Single marker.'
         print, '   Input : ', instr
         print, '   Output: ', outstr
         print

         ;;
         ;; 2. Multiple markers
         ;;
         marker = ' XX '
         instr  = 'Left > Right endpoint. Left: XX; Right: XX'

         cspice_repmi, instr, marker, 2035L, outstr

         print, 'Case 2: Multiple markers.'
         print, '   Input : ', instr
         print, '   Output: ', outstr
         print

      END


      When this program was executed on a Mac/Intel/IDL8.x/64-bit
      platform, the output was:


      Case 1: Single marker.
         Input : Invalid value. The value was:  #
         Output: Invalid value. The value was:  75

      Case 2: Multiple markers.
         Input : Left > Right endpoint. Left: XX; Right: XX
         Output: Left > Right endpoint. Left: 2035; Right: XX


Particulars


   This is one of a family of related routines for inserting values
   into strings. They are typically to construct messages that
   are partly fixed, and partly determined at run time. For example,
   a message like

      'Fifty-one pictures were found in directory [USER.DATA].'

   might be constructed from the fixed string

      '#1 pictures were found in directory #2.'

   by the calls

      cspice_repmct, string, '#1', 51L, 'C', string
      cspice_repmc, string, '#2', '[USER.DATA]', string

   which substitute the cardinal text 'Fifty-one' and the character
   string '[USER.DATA]' for the markers '#1' and '#2' respectively.

   The complete list of routines is shown below.

      cspice_repmc    ( Replace marker with character string value )
      cspice_repmd    ( Replace marker with double precision value )
      cspice_repmf    ( Replace marker with formatted d.p. value   )
      cspice_repmi    ( Replace marker with integer value          )
      cspice_repml    ( Replace marker with logical value          )
      cspice_repmct   ( Replace marker with cardinal text          )
      cspice_repmot   ( Replace marker with ordinal text           )

Exceptions


   1)  If `marker' is blank or empty, or if `marker' is not a substring of
       `in', no substitution is performed. (`out' and `in' are identical.)

   2)  If any of the input arguments, `in', `marker' or `value', is
       undefined, an error is signaled by the IDL error handling
       system.

   3)  If any of the input arguments, `in', `marker' or `value', is
       not of the expected type, or it does not have the expected
       dimensions and size, an error is signaled by the Icy
       interface.

   4)  If the output argument `out' is not a named variable, an error
       is signaled by the Icy interface.

Files


   None.

Restrictions


   None.

Required_Reading


   ICY.REQ

Literature_References


   None.

Author_and_Institution


   J. Diaz del Rio     (ODC Space)

Version


   -Icy Version 1.0.0, 01-JUN-2021 (JDR)

Index_Entries


   replace marker with integer



Fri Dec 31 18:43:06 2021