Skip to main content

This is documentation for Caché & Ensemble. See the InterSystems IRIS version of this content.Opens in a new tab

For information on migrating to InterSystems IRISOpens in a new tab, see Why Migrate to InterSystems IRIS?

<CSP:CONTINUE>

現在の CSP:WHILE ブロック、または CSP:LOOP ブロックの次の反復を実行します。

Synopsis

<CSP:CONTINUE>

概要

CSP:CONTINUE は、現在の CSP:WHILE ブロックまたは CSP:LOOP ブロックの次の反復を実行します。例えば、以下のようになります。


<CSP:WHILE COUNTER=x CONDITION="(x<3)">
<CSP:IF CONDITION="(x=2)">
<CSP:CONTINUE>
</CSP:IF>
Item #(x)# <br>
</CSP:WHILE>

この結果、以下が生成されます。

  Item 1
  Item 3
FeedbackOpens in a new tab