summaryrefslogtreecommitdiff
path: root/source/text/sbasic/shared/03090202.xhp
blob: 7e452db30b8f2c975ef1889b05f2a6e7a31daf2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?xml version="1.0" encoding="UTF-8"?>
<helpdocument version="1.0">
<!--
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
-->

<meta>
  <topic id="textsbasicshared03090202xml" indexer="include" status="PUBLISH">
    <title id="tit" xml-lang="en-US">For...Next Statement</title>
    <filename>/text/sbasic/shared/03090202.xhp</filename>
  </topic>
</meta>

<body>


<section id="fornext">
<bookmark xml-lang="en-US" branch="index" id="bm_id3149205">
  <bookmark_value>For statement</bookmark_value>
  <bookmark_value>To statement</bookmark_value>
  <bookmark_value>Step statement</bookmark_value>
  <bookmark_value>Next statement</bookmark_value>
</bookmark>


<paragraph id="hd_id3149205" role="heading" level="1" xml-lang="en-US"><link href="text/sbasic/shared/03090202.xhp" name="For...Next Statement">For...Next Statement</link></paragraph>
<paragraph id="par_id3143267" role="paragraph" xml-lang="en-US">Repeats the statements between the For...Next block a specified number of times.</paragraph>
</section>

<paragraph id="hd_id3156153" role="heading" level="2" xml-lang="en-US">Syntax:</paragraph>
<bascode>
<paragraph id="par_id3148473" role="bascode" xml-lang="en-US">For counter=start To end [Step step]</paragraph>
<paragraph id="par_id3156024" role="bascode" xml-lang="en-US">statement block</paragraph>
<paragraph id="par_id3146796" role="bascode" xml-lang="en-US">[Exit For]</paragraph>
<paragraph id="par_id3159414" role="bascode" xml-lang="en-US">statement block</paragraph>
<paragraph id="par_id3153897" role="bascode" xml-lang="en-US">Next [counter]</paragraph>
</bascode>

<paragraph id="hd_id3150400" role="heading" level="2" xml-lang="en-US">Variables:</paragraph>
<paragraph id="par_id3150358" role="paragraph" xml-lang="en-US"> <emph>Counter:</emph> Loop counter initially assigned the value to the right of the equal sign (start). Only numeric variables are valid. The loop counter increases or decreases according to the variable Step until End is passed.</paragraph>
<paragraph id="par_id3152455" role="paragraph" xml-lang="en-US"> <emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop.</paragraph>
<paragraph id="par_id3151043" role="paragraph" xml-lang="en-US"> <emph>End:</emph> Numeric variable that defines the final value at the end of the loop.</paragraph>
<paragraph id="par_id3156281" role="paragraph" xml-lang="en-US"> <emph>Step:</emph> Sets the value by which to increase or decrease the loop counter. If Step is not specified, the loop counter is incremented by 1. In this case, End must be greater than Start. If you want to decrease Counter, End must be less than Start, and Step must be assigned a negative value.</paragraph>
<paragraph id="par_id3154684" role="paragraph" xml-lang="en-US">The <emph>For...Next</emph> loop repeats all of the statements in the loop for the number of times that is specified by the parameters.</paragraph>
<paragraph id="par_id3147287" role="paragraph" xml-lang="en-US">As the counter variable is decreased, $[officename] Basic checks if the end value has been reached. As soon as the counter passes the end value, the loop automatically ends.</paragraph>
<paragraph id="par_id3159154" role="paragraph" xml-lang="en-US">It is possible to nest <emph>For...Next</emph> statements. If you do not specify a variable following the <emph>Next</emph> statement, <emph>Next</emph> automatically refers to the most recent <emph>For</emph> statement.</paragraph>
<paragraph id="par_id3155306" role="paragraph" xml-lang="en-US">If you specify an increment of 0, the statements between <emph>For</emph> and <emph>Next</emph> are repeated continuously.</paragraph>
<paragraph id="par_id3155854" role="paragraph" xml-lang="en-US">When counting down the counter variable, $[officename] Basic checks for overflow or underflow. The loop ends when Counter exceeds End (positive Step value) or is less than End (negative Step value).</paragraph>
<paragraph id="par_id3145273" role="paragraph" xml-lang="en-US">Use the <emph>Exit For</emph> statement to exit the loop unconditionally. This statement must be within a <emph>For...Next</emph> loop. Use the <emph>If...Then</emph> statement to test the exit condition as follows:</paragraph>
<paragraph id="par_id3153190" role="paragraph" xml-lang="en-US">For...</paragraph>
<paragraph id="par_id3149482" role="paragraph" xml-lang="en-US">statements</paragraph>
<paragraph id="par_id3147124" role="paragraph" xml-lang="en-US">If condition = True Then Exit For</paragraph>
<paragraph id="par_id3153159" role="paragraph" xml-lang="en-US">statements</paragraph>
<paragraph id="par_id3154096" role="paragraph" xml-lang="en-US">Next</paragraph>
<paragraph id="par_id3156286" role="paragraph" xml-lang="en-US">Note: In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited.</paragraph>

<paragraph id="hd_id3148457" role="heading" level="2" xml-lang="en-US">Example</paragraph>
<paragraph id="par_id3151074" role="paragraph" xml-lang="en-US">The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that are first filled with various contents:</paragraph>
<bascode>
<paragraph id="par_idm1341539088" role="bascode" localize="false" xml-lang="en-US">Sub ExampleSort</paragraph>
<paragraph id="par_idm1340517312" role="bascode" localize="false" xml-lang="en-US">Dim sEntry(9) As String</paragraph>
<paragraph id="par_idm1340516080" role="bascode" localize="false" xml-lang="en-US">Dim iCount As Integer</paragraph>
<paragraph id="par_idm1340514848" role="bascode" localize="false" xml-lang="en-US">Dim iCount2 As Integer</paragraph>
<paragraph id="par_idm1340513616" role="bascode" localize="false" xml-lang="en-US">Dim sTemp As String</paragraph>
<paragraph id="par_id3155767" role="bascode" xml-lang="en-US">    sEntry(0) = "Jerry"</paragraph>
<paragraph id="par_id3153711" role="bascode" xml-lang="en-US">    sEntry(1) = "Patty"</paragraph>
<paragraph id="par_id3148993" role="bascode" xml-lang="en-US">    sEntry(2) = "Kurt"</paragraph>
<paragraph id="par_id3156382" role="bascode" xml-lang="en-US">    sEntry(3) = "Thomas"</paragraph>
<paragraph id="par_id3155174" role="bascode" xml-lang="en-US">    sEntry(4) = "Michael"</paragraph>
<paragraph id="par_id3166448" role="bascode" xml-lang="en-US">    sEntry(5) = "David"</paragraph>
<paragraph id="par_id3149255" role="bascode" xml-lang="en-US">    sEntry(6) = "Cathy"</paragraph>
<paragraph id="par_id3149565" role="bascode" xml-lang="en-US">    sEntry(7) = "Susie"</paragraph>
<paragraph id="par_id3145148" role="bascode" xml-lang="en-US">    sEntry(8) = "Edward"</paragraph>
<paragraph id="par_id3145229" role="bascode" xml-lang="en-US">    sEntry(9) = "Christine"</paragraph>
<paragraph id="par_idm1340495152" role="bascode" localize="false" xml-lang="en-US">    For iCount = 0 To 9</paragraph>
<paragraph id="par_idm1340493920" role="bascode" localize="false" xml-lang="en-US">        For iCount2 = iCount + 1 To 9</paragraph>
<paragraph id="par_idm1340492672" role="bascode" localize="false" xml-lang="en-US">            If sEntry(iCount) &gt; sEntry(iCount2) Then</paragraph>
<paragraph id="par_idm1340491296" role="bascode" localize="false" xml-lang="en-US">                sTemp = sEntry(iCount)</paragraph>
<paragraph id="par_idm1340490096" role="bascode" localize="false" xml-lang="en-US">                sEntry(iCount) = sEntry(iCount2)</paragraph>
<paragraph id="par_idm1340488832" role="bascode" localize="false" xml-lang="en-US">                sEntry(iCount2) = sTemp</paragraph>
<paragraph id="par_idm1340487584" role="bascode" localize="false" xml-lang="en-US">            End If</paragraph>
<paragraph id="par_idm1340486352" role="bascode" localize="false" xml-lang="en-US">        Next iCount2</paragraph>
<paragraph id="par_idm1340485120" role="bascode" localize="false" xml-lang="en-US">    Next iCount</paragraph>
<paragraph id="par_idm1340483888" role="bascode" localize="false" xml-lang="en-US">    For iCount = 0 To 9</paragraph>
<paragraph id="par_idm1340482656" role="bascode" localize="false" xml-lang="en-US">        Print sEntry(iCount)</paragraph>
<paragraph id="par_idm1340481408" role="bascode" localize="false" xml-lang="en-US">    Next iCount</paragraph>
<paragraph id="par_idm1340480176" role="bascode" localize="false" xml-lang="en-US">End Sub</paragraph>
</bascode>
</body>

</helpdocument>