Files
help/helpcontent2/source/text/sbasic/shared/03020203.xhp
2004-08-18 09:59:46 +00:00

107 lines
7.2 KiB
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<!--***********************************************************************
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRUNTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRUNTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc..
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************--><helpdocument version="1.0">
<meta>
<topic id="textsbasicshared03020203xml" indexer="include" status="PUBLISH">
<title xml-lang="en-US" id="tit">Line Input # Statement [Runtime]</title>
<filename>/text/sbasic/shared/03020203.xhp</filename>
</topic>
<history>
<created date="2003-10-31T00:00:00">Sun Microsystems, Inc.</created>
<lastedited date="2003-10-31T00:00:00">converted from old format - fpe</lastedited>
</history>
</meta>
<body>
<section id="lineinput">
<bookmark xml-lang="en-US" branch="index" id="bm_id3153361"><bookmark_value>Line;function</bookmark_value></bookmark><paragraph id="hd_id3153361" role="heading" level="1" oldref="1" l10n="U" xml-lang="en-US"><link href="text/sbasic/shared/03020203.xhp" name="Line Input # Statement [Runtime]">Line Input # Statement [Runtime]</link></paragraph>
<paragraph role="paragraph" id="par_id3156280" l10n="U" xml-lang="en-US" oldref="2">Reads strings from a sequential file into a variable.</paragraph>
</section>
<paragraph role="heading" level="2" id="hd_id3150447" l10n="U" xml-lang="en-US" oldref="3">Syntax:</paragraph>
<paragraph role="paragraph" id="par_id3147229" l10n="U" xml-lang="en-US" oldref="4">Line Input #FileNumber As Integer, Var As String </paragraph>
<paragraph role="heading" level="2" id="hd_id3145173" l10n="U" xml-lang="en-US" oldref="5">Parameters:</paragraph>
<paragraph l10n="U" role="paragraph" id="par_id3161832" xml-lang="en-US" oldref="6"><emph>FileNumber: </emph>Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word READ.</paragraph>
<paragraph l10n="U" role="paragraph" id="par_id3151119" xml-lang="en-US" oldref="7"><emph>var:</emph> The name of the variable that stores the result.</paragraph>
<paragraph xml-lang="en-US" role="paragraph" id="par_id3150010" l10n="U" oldref="8">With the <emph>Line Input#</emph> statement, you can read strings from an open file into a variable. String variables are read line-by-line up to the first carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not included in the resulting string.</paragraph>
<paragraph role="heading" level="2" id="hd_id3163711" l10n="U" xml-lang="en-US" oldref="9">Example:</paragraph>
<paragraph role="paragraph" id="par_id3145271" l10n="U" xml-lang="en-US" oldref="10">Sub ExampleWorkWithAFile</paragraph>
<paragraph role="paragraph" id="par_id3156444" l10n="U" xml-lang="en-US" oldref="11">Dim iNumber As Integer</paragraph>
<paragraph role="paragraph" id="par_id3147349" l10n="U" xml-lang="en-US" oldref="12">Dim sLine As String</paragraph>
<paragraph role="paragraph" id="par_id3149664" l10n="U" xml-lang="en-US" oldref="13">Dim aFile As String</paragraph>
<paragraph role="paragraph" id="par_id3147436" l10n="U" xml-lang="en-US" oldref="36">Dim sMsg as String</paragraph>
<paragraph role="paragraph" id="par_id3154730" l10n="U" xml-lang="en-US" oldref="14">aFile = &quot;c:\data.txt&quot;</paragraph>
<paragraph role="paragraph" id="par_id3145647" l10n="U" xml-lang="en-US" oldref="16">iNumber = Freefile</paragraph>
<paragraph role="paragraph" id="par_id3149959" l10n="U" xml-lang="en-US" oldref="17">Open aFile For Output As #iNumber</paragraph>
<paragraph role="paragraph" id="par_id3147124" l10n="U" xml-lang="en-US" oldref="18">Print #iNumber, &quot;This is a line of text&quot;</paragraph>
<paragraph role="paragraph" id="par_id3153415" l10n="U" xml-lang="en-US" oldref="19">Print #iNumber, &quot;This is another line of text&quot;</paragraph>
<paragraph role="paragraph" id="par_id3146969" l10n="U" xml-lang="en-US" oldref="20">Close #iNumber</paragraph>
<paragraph role="paragraph" id="par_id3154482" l10n="U" xml-lang="en-US" oldref="24">iNumber = Freefile</paragraph>
<paragraph role="paragraph" id="par_id3150321" l10n="U" xml-lang="en-US" oldref="25">Open aFile For Input As iNumber</paragraph>
<paragraph role="paragraph" id="par_id3155443" l10n="U" xml-lang="en-US" oldref="26">While not eof(iNumber)</paragraph>
<paragraph role="paragraph" id="par_id3155764" l10n="U" xml-lang="en-US" oldref="27">Line Input #iNumber, sLine</paragraph>
<paragraph role="paragraph" id="par_id3156382" l10n="U" xml-lang="en-US" oldref="28">If sLine &lt;&gt;&quot;&quot; then</paragraph>
<paragraph role="paragraph" id="par_id3147338" l10n="U" xml-lang="en-US" oldref="29">sMsg = sMsg &amp; sLine &amp; chr(13)</paragraph>
<paragraph role="paragraph" id="par_id3147362" l10n="U" xml-lang="en-US" oldref="31">end if</paragraph>
<paragraph role="paragraph" id="par_id3155333" l10n="U" xml-lang="en-US" oldref="32">wend</paragraph>
<paragraph role="paragraph" id="par_id3153965" l10n="U" xml-lang="en-US" oldref="33">Close #iNumber</paragraph>
<paragraph role="paragraph" id="par_id3147345" l10n="U" xml-lang="en-US" oldref="37">Msgbox sMsg</paragraph>
<paragraph role="paragraph" id="par_id3149257" l10n="U" xml-lang="en-US" oldref="34">End Sub</paragraph>
</body>
</helpdocument>