We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf3475b commit cdc7b50Copy full SHA for cdc7b50
src/strings.f90
@@ -168,7 +168,7 @@ function str_uniq(str,delim) result(strout)
168
ctemp=trim(adjustl(str))
169
! Remove any leading or trailing delimiters
170
if(ctemp(1:1).eq.delim) ctemp=ctemp(2:len(ctemp))
171
- if(ctemp(len(ctemp):len(ctemp)).eq.demlin) ctemp=ctemp(1:len(ctemp)-1)
+ if(ctemp(len(ctemp):len(ctemp)).eq.delim) ctemp=ctemp(1:len(ctemp)-1)
172
ncols=str_count(ctemp,delim)+1
173
do n=1,ncols
174
col=str_split(ctemp,delim,n)
0 commit comments