java.lang.String |
Response.extract(ExtractionCursor cursor,
java.lang.String before,
java.lang.String after,
SearchFlags matchFlags) |
Extracts text from the response content - everything between (but not including)
the specified before and after String objects -
returning an empty String if they cannot be found.
|
java.lang.String |
Response.extract(ExtractionCursor cursor,
java.lang.String before,
java.lang.String after,
SearchFlags matchFlags,
boolean caseSensitive) |
Extracts text from the response content - everything between (but not including)
the specified before and after String objects -
returning an empty String if they cannot be found,
and specifying whether the search will be case-sensitive.
|
java.lang.String |
Response.extractFromEnd(ExtractionCursor cursor,
java.lang.String after,
java.lang.String before,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content, starting from the end.
|
java.lang.String |
Response.extractFromEnd(ExtractionCursor cursor,
java.lang.String after,
java.lang.String before,
ActionType failAction,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content, starting from the end.
|
java.lang.String |
Response.extractFromEnd(ExtractionCursor cursor,
java.lang.String after,
java.lang.String before,
java.lang.String defaultValue,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content, starting from the end.
|
java.lang.String |
Response.extractFromEnd(ExtractionCursor cursor,
java.util.List<java.lang.String> after,
java.lang.String before,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content starting from the end.
|
java.lang.String |
Response.extractFromEnd(ExtractionCursor cursor,
java.util.List<java.lang.String> after,
java.lang.String before,
ActionType failAction,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content starting from the end.
|
java.lang.String |
Response.extractFromEnd(ExtractionCursor cursor,
java.util.List<java.lang.String> after,
java.lang.String before,
java.lang.String defaultValue,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content starting from the end.
|
java.lang.String |
Response.extractFromEnd(java.lang.String after,
java.lang.String before,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content, starting from the end.
|
java.lang.String |
Response.extractFromEnd(java.lang.String after,
java.lang.String before,
ActionType failAction,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content, starting from the end.
|
java.lang.String |
Response.extractFromEnd(java.lang.String after,
java.lang.String before,
java.lang.String defaultValue,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content, starting from the end.
|
java.lang.String |
Response.extractFromEnd(java.util.List<java.lang.String> after,
java.lang.String before,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content starting from the end.
|
java.lang.String |
Response.extractFromEnd(java.util.List<java.lang.String> after,
java.lang.String before,
ActionType failAction,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content starting from the end.
|
java.lang.String |
Response.extractFromEnd(java.util.List<java.lang.String> after,
java.lang.String before,
java.lang.String defaultValue,
boolean caseSensitive,
SearchFlags matchFlags) |
Extracts text from the response content starting from the end.
|
java.util.List<java.lang.String> |
Response.extractList(ExtractionCursor cursor,
java.lang.String before,
java.lang.String after,
SearchFlags matchFlags) |
Extracts a list of items from this Response .
|
java.util.List<java.lang.String> |
Response.extractList(ExtractionCursor cursor,
java.lang.String before,
java.lang.String after,
SearchFlags matchFlags,
java.lang.String endAt) |
Extracts a list of items from this Response .
|
java.util.List<java.lang.String> |
Response.extractList(ExtractionCursor cursor,
java.lang.String before,
java.lang.String after,
SearchFlags matchFlags,
java.lang.String endAt,
boolean caseSensitive) |
Extracts a list of items from this Response .
|
java.util.List<java.lang.String> |
Response.extractList(ExtractionCursor cursor,
java.lang.String before,
java.lang.String after,
SearchFlags matchFlags,
java.lang.String endAt,
boolean caseSensitive,
int maxItems) |
Extracts a list of items from this Response .
|
java.lang.String |
Response.extractRegExp(ExtractionCursor cursor,
java.lang.String beforeRegExp,
java.lang.String afterRegExp,
SearchFlags matchFlags) |
Extracts text from the response content - everything between (but not including)
the specified before and after String objects -
returning an empty String if they cannot be found.
|
java.lang.String |
Response.extractRegExp(ExtractionCursor cursor,
java.lang.String beforeRegExp,
java.lang.String afterRegExp,
SearchFlags matchFlags,
boolean caseSensitive) |
Extracts text from the response content - everything between (but not including)
the specified before and after String objects -
returning an empty String if they cannot be found,
and specifying whether the search will be case-sensitive.
|