Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

${set(count,%{${count} + 1})}

Let's put the mappings that we want to print on the template.

Author

${Comments[n].AuthorFullName}
Body${Comments[n].Body}

Now, We are going to use the function continue within a conditional block.

#{if (%{'${Comments[n].Body}'.equals('Hello Continue')})}

Jump to next comment.

#{continue}

#{end}

When the comment is equal to "Hello Continue", it is going to print the message "Jump the next comment" and the iteration goes to the start of the next comment.

Info

We You must have comments on your issue and a comment with "Hello Continue".

After the conditional block with the continue statement, we are going to put another conditional block that only print the message "Next comment", when the count of our set funciton is less than CommentsCount.

...

When the comment is equal to "Hello Stop", it is going to print the message "Finish the iteration of comments" and the iteration stops, skipping to its end statement.

Info

We You must have comments on your issue and a comment with "Hello Stop".

...