DannyPants
Technical User
I'm trying to modify some Fortran code, and I'm having trouble counting the number of characters in a string. Below is the line of code I have a question about. Specifically, I don't understand why CHARACTER(88) says there are 88 characters in this string. At most I can only count 82 characters (by counting the characters in-between the " " and also each tab counts as one character. Am I miscounting? Or is there a mistake in this code? How many characters do you guys count, and how did you do it? Thanks for the help, this is my first post here!
Code:
CHARACTER( 88), PARAMETER :: FmtBEDt = "(I3,'"//Tab//"',2(F6.1,'"//Tab//"'),4(F6.3,'"//Tab//"'),2(F7.2,'"//Tab//"'),5(F6.3,'"//Tab//"'),F10.1,'"//Tab//"',F11.1,'"//Tab//"',F12.3)"