<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Character to Real conversion-Fortran90 in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766826#M20540</link>
    <description>&lt;DIV&gt;I have a program that scans a text file and finds strings in a certain column that look like numbers, ie 100.3, it grabs these strings and prints them out.Now I want to use the same routine, but once the character string is found, ie 100.3, I would like to assign it to a real variable so I can use it in a math expression.. Can this be done?&lt;/DIV&gt;</description>
    <pubDate>Fri, 05 Mar 2004 03:04:48 GMT</pubDate>
    <dc:creator>stearns</dc:creator>
    <dc:date>2004-03-05T03:04:48Z</dc:date>
    <item>
      <title>Character to Real conversion-Fortran90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766826#M20540</link>
      <description>&lt;DIV&gt;I have a program that scans a text file and finds strings in a certain column that look like numbers, ie 100.3, it grabs these strings and prints them out.Now I want to use the same routine, but once the character string is found, ie 100.3, I would like to assign it to a real variable so I can use it in a math expression.. Can this be done?&lt;/DIV&gt;</description>
      <pubDate>Fri, 05 Mar 2004 03:04:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766826#M20540</guid>
      <dc:creator>stearns</dc:creator>
      <dc:date>2004-03-05T03:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Character to Real conversion-Fortran90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766827#M20541</link>
      <description>&lt;DIV&gt;This could be as simple as&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;READ(charstr,*)realval&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;The "rules and restrictions" in Adams, Brainerd et al are in the section titled "Data Transfer on Internal Files." &lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Examples of Internal File I/O appear in the Intel compiler .pdf manual.&lt;/DIV&gt;</description>
      <pubDate>Fri, 05 Mar 2004 04:07:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766827#M20541</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2004-03-05T04:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Character to Real conversion-Fortran90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766828#M20542</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;&lt;FONT face="Times New Roman"&gt;And what do I do If I want do to exactly the opposite? &lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 05 May 2005 07:51:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766828#M20542</guid>
      <dc:creator>vinicius_reis</dc:creator>
      <dc:date>2005-05-05T07:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Character to Real conversion-Fortran90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766829#M20543</link>
      <description>WRITE (STRING,*) variable....&lt;BR /&gt;&lt;BR /&gt;The * can be an explicit format as well.&lt;BR /&gt;&lt;BR /&gt;This is called "Internal I/O" and is a standard language feature of Fortran.  You can read about it in the Intel Fortran Language Reference.</description>
      <pubDate>Thu, 05 May 2005 19:55:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766829#M20543</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-05-05T19:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Character to Real conversion-Fortran90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766830#M20544</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P&gt;&lt;SPAN&gt;Sorry, but with opposite I meant read a real variable and pass its value to a string.&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 05 May 2005 21:28:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766830#M20544</guid>
      <dc:creator>vinicius_reis</dc:creator>
      <dc:date>2005-05-05T21:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: Character to Real conversion-Fortran90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766831#M20545</link>
      <description>I understood - that's what I described above.&lt;BR /&gt;&lt;BR /&gt;The way one does this sort of thing in Fortran is to pretend you are writing to or reading from a file, except that the character variable takes the place of the unit number.</description>
      <pubDate>Thu, 05 May 2005 21:45:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766831#M20545</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2005-05-05T21:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Character to Real conversion-Fortran90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766832#M20546</link>
      <description>&lt;DIV&gt;Got the idea! Thanks very much!&lt;/DIV&gt;</description>
      <pubDate>Tue, 10 May 2005 20:38:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Character-to-Real-conversion-Fortran90/m-p/766832#M20546</guid>
      <dc:creator>vinicius_reis</dc:creator>
      <dc:date>2005-05-10T20:38:54Z</dc:date>
    </item>
  </channel>
</rss>

