- Input field: Represents a given number of words.
<word/>
<word>number</word>
<word>start, end</word>
Description
The word
element works same as * (star) except the former requires a certain number of words while the later presents one or any number of words. You can also return the text it represents with corresponding <s/>
element in the Output field.
Parameters
number
The number of words to represent. It must be an integer from 1 to 5. Where the parameter is omitted or invalid, it's processed as one. In other words, <word/> = <word>1</word>
.
start, end
The range of words to represent. Both start and end must be an integer from 1 to 5. Start must be smaller than end.
Examples
Example 1. Word and *
- Cell 1
- I am *
- Are you
<s/>
? - Cell 2
- I am
<word/>
- Yes, you're
<s/>
. - Cell 3
- I am
<word>2</word>
- Of course, you're
<s/>
.
- Log
- I am good at programming.
- Are you good at programming?
- I am good.
- Yes, you're good.
- I am very good.
- Of course, you're very good.
See Also
- * (star)
- number
- n
- nerve