libsim  Versione 7.1.9

◆ csv_record_addfield_int()

subroutine csv_record_addfield_int ( type(csv_record), intent(inout)  this,
integer, intent(in)  field,
character(len=*), intent(in), optional  form,
logical, intent(in), optional  force_quote 
)

Add a field from an INTEGER variable to the csv record this.

The field will be quoted if necessary.

Parametri
[in,out]thisobject where to add field
[in]fieldfield to be added
[in]formoptional format
[in]force_quoteif provided and .TRUE. , the field will be quoted even if not necessary

Definizione alla linea 656 del file file_utilities.F90.

657  IF (this%record(i) == this%csep) THEN ! , fine campo
658  EXIT
659  ELSE ! carattere normale, elimina "trailing blanks"
660  CALL add_char(this%record(i), .true., field)
661  cycle
662  ENDIF
663  ENDIF
664  ENDIF
665  ENDIF
666 ENDDO
667 

Generated with Doxygen.