s

  • Output field: Returns the text that the corresponding input-side star (*) represents.
<s>index</s>

Parameters

Index

The index of corresponding input-side star. 1 for the first star, 2 for the second one, and so on.

Examples

Example 1. S element for the first star

    • I am * years old
    • Glad to meet someone of <s/> years old.
    • I am 7 years old
    • Glad to meet someone of 7 years old.

Example 2. S element for the second star

    • * I am * years old
    • Glad to meet someone of <s>2</s> years old.
    • I'd like to tell you I am 7 years old
    • Glad to meet someone of 7 years old.

Notes

  • The max value of index is 7. The additional S elements are ignored.
  • All stars, including * and nerve use the same index sequence. For example, The index for * in the following input is 2: * I am * years old