Smartsite SXML | Copy Code |
---|---|
<se:for from="1" to="10" whitespace="remove"> i={this.index()} {sys.iif(this.index() == 5, this.break())} {char.crlf()} </se:for> Done. |
Example Result | Copy Code |
---|---|
i=1 i=2 i=3 i=4 i=5 Done. |
Smartsite SXML | Copy Code |
---|---|
<se:for from="1" to="10" whitespace="remove"> i={this.index()} {sys.iif(this.index() == 5, this.break())} {char.crlf()} </se:for> Done. |
Example Result | Copy Code |
---|---|
i=1 i=2 i=3 i=4 i=5 Done. |