BBjString::subSequence
Description
In BBj 7.0 and higher, this method returns a character sequence that is a subsequence of this sequence.
An invocation of this method of the form:
str.subSequence(begin, end)
behaves in exactly the same way as the invocation:
str.substring(begin, end)
Syntax
Return Value |
Method |
---|---|
CharSequence |
subSequence(int beginIndex, int endindex) |
Parameters
Variable |
Description |
---|---|
beginIndex |
The begin index, inclusive. |
endIndex |
The end index, exclusive. |
Return Value
Returns the specified subsequence.
Remarks
None.
Example
|
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.