Method SubSequence
SubSequence(Int32, Int32)
Returns a ICharSequence from the start
index (inclusive)
to the end
index (exclusive) of this sequence.
Declaration
ICharSequence SubSequence(int start, int end)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | start | the start offset of the sub-sequence. It is inclusive, that is, the index of the first character that is included in the sub-sequence. |
System.Int32 | end | the end offset of the sub-sequence. It is exclusive, that is, the index of the first character after those that are included in the sub-sequence |
Returns
Type | Description |
---|---|
ICharSequence | the requested sub-sequence. |