2016 Update
This commit is contained in:
parent
948b86eafa
commit
dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions
33
Task/XML-Input/Fortran/xml-input-1.f
Normal file
33
Task/XML-Input/Fortran/xml-input-1.f
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
program tixi_rosetta
|
||||
use tixi
|
||||
implicit none
|
||||
integer :: i
|
||||
character (len=100) :: xml_file_name
|
||||
integer :: handle
|
||||
integer :: error
|
||||
character(len=100) :: name, xml_attr
|
||||
xml_file_name = 'rosetta.xml'
|
||||
|
||||
call tixi_open_document( xml_file_name, handle, error )
|
||||
i = 1
|
||||
do
|
||||
xml_attr = '/Students/Student['//int2char(i)//']'
|
||||
call tixi_get_text_attribute( handle, xml_attr,'Name', name, error )
|
||||
if(error /= 0) exit
|
||||
write(*,*) name
|
||||
i = i + 1
|
||||
enddo
|
||||
|
||||
call tixi_close_document( handle, error )
|
||||
|
||||
contains
|
||||
|
||||
function int2char(i) result(res)
|
||||
character(:),allocatable :: res
|
||||
integer,intent(in) :: i
|
||||
character(range(i)+2) :: tmp
|
||||
write(tmp,'(i0)') i
|
||||
res = trim(tmp)
|
||||
end function int2char
|
||||
|
||||
end program tixi_rosetta
|
||||
Loading…
Add table
Add a link
Reference in a new issue