libsim  Versione7.2.6

◆ lowercase()

character( len( input_string ) ) function, public char_utilities::lowercase ( character( * ), intent(in)  Input_String)

Convert a CHARACTER variable to lowercase.

Parametri
[in]input_stringvariable to be converted

Definizione alla linea 833 del file char_utilities.F90.

833 
834 !IF (nlines == 0)
835 ALLOCATE(this%paragraph(this%ncols, nlines))
836 this%paragraph = ' '
837 ! repeat filling the paragraph
838 nlines = 0
839 nw = 0
840 DO WHILE(nw < nwords)
841  columns_in_line = 0
842  words_in_line = 0
843  DO WHILE(nw < nwords)
844  nw = nw + 1
845  ncols_next_word = this%word_end(nw) - this%word_start(nw) + 1
846  IF (words_in_line > 0) ncols_next_word = ncols_next_word + 1 ! previous space
847  IF (columns_in_line + ncols_next_word <= this%ncols .OR. &

Generated with Doxygen.