libsim Versione 7.2.0
|
◆ csv_record_addfield_csv_record()
Add a full csv_record object to the csv record this. The object to be added must have been generated through csv_record_addfield calls (csv encoding mode). Both csv_record objects this and record must use the same delimiter and quoting characters, otherwise the operation will silently fail.
Definizione alla linea 743 del file file_utilities.F90. 744!! interpreted as a real, or if it is longer than 32 characters,
745!! it returns a missing value.
746SUBROUTINE csv_record_getfield_real(this, field, ier)
747TYPE(csv_record),INTENT(INOUT) :: this
748REAL,INTENT(OUT) :: field
749INTEGER,INTENT(OUT),OPTIONAL :: ier
750
751CHARACTER(len=32) :: cfield
752INTEGER :: lier
753
754CALL csv_record_getfield(this, field=cfield, ier=ier)
755IF (c_e(cfield) .AND. len_trim(cfield) /= 0) THEN
|