找回密码
 注册
Simdroid-非首页
查看: 69|回复: 2

[3. Fortran] 字符与数据之间的转换问题

[复制链接]
发表于 2009-3-29 19:45:46 | 显示全部楼层 |阅读模式 来自 云南昆明
要读取的文件是这样
bs16001n
bs16002z
bs16003e
yx17002e
.........
只想读第5-7个数字也就是001,002.但要读只能用字符串读。
a=fn(5:7)
如何把字符型数值转成整型数字,有的人说用内部文件操作,但试了一下不行。
发表于 2009-3-29 21:24:22 | 显示全部楼层 来自 重庆
Simdroid开发平台
program haha
   implicit none
   character(10)::a="123"
   integer(kind=4)::b
   read(a,*)b
   print*,b
end
照葫芦画瓢
回复 不支持

使用道具 举报

发表于 2009-4-6 13:52:22 | 显示全部楼层 来自 江苏南京
主程序中调用函数执行转换:
        program main
        character*10 str
        integer i,strtoint
        open(2,file='data.txt')
        read(2,*)str
        write(*,*)str
        i=strtoint(str(5:7))
        write(*,*)i
        end
        integer function strtoint(str)
        character*(*)str
        read(str,*)strtoint
        end function
回复 不支持

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

Simapps系列直播

Archiver|小黑屋|联系我们|仿真互动网 ( 京ICP备15048925号-7 )

GMT+8, 2024-11-1 11:38 , Processed in 0.046317 second(s), 14 queries , Gzip On, MemCache On.

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表