Tagged Questions
2
votes
2answers
858 views
Parsing strings in Fortran
I am reading from a file in Fortran which has an undetermined number of floating point values on each line (for now, there are about 17 values on a line). I would like to read the 'n'th value on each ...
1
vote
1answer
366 views
passing strings for execution in fortran subroutines
in the following subroutine i would like to pass a string variables named 'str'. if it is 'poly', 'gaus', 'slat', then it has a predefined action (fval = see code below ). i would like to have the ...
1
vote
2answers
546 views
How do I pass a string from Visual Basic 2010 to a Fortran DLL?
I can pass integers, singles, doubles, and arrays of all these back and forth with no problem. But I can't figure out how to pass a string in Visual Basic 2010 to a character variable in the Fortran ...
2
votes
3answers
5k views
Reading a string with spaces in Fortran
Using read(asterisk, asterisk) in Fortran doesn't seem to work if the string to be read from the user contains spaces.
Consider the following code:
character(Len = 1000) :: input = ' '
...
1
vote
3answers
3k views
passing a string as an argument when the dummy has specified length
if I have this code
module test
contains
subroutine xx(name)
character(len=20), intent(in), optional :: name
if (present(name)) then
print *, name
else
print ...