Is there a way to access a character in a string in fortran? If I wanted to store the first letter of a the string "taco" in a character variable how would I do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Character variables and constants can be "substringed" using a syntax similar to an array section.
A substring of a character variable is also a variable - it may appear on the left hand side of an assignment statement. |
|||
|
|