|
ASPOSE home |
java.lang.Objectcom.aspose.words.ReplaceEvaluatorArgs
public class ReplaceEvaluatorArgs
Property Getters/Setters Summary | ||
---|---|---|
int | getGroupIndex() | |
void | setGroupIndex(int value) | |
Identifies, by index, a captured group in the |
||
java.lang.String | getGroupName() | |
void | setGroupName(java.lang.String value) | |
Identifies, by name, a captured group in the |
||
java.util.regex.Matcher | getMatch() | |
The |
||
Node | getMatchNode() | |
Gets the node that contains the beginning of the match. | ||
int | getMatchOffset() | |
Gets the zero-based starting position of the match from the start of the node that contains the beginning of the match. | ||
java.lang.String | getReplacement() | |
void | setReplacement(java.lang.String value) | |
Gets or sets the replacement string. |
Property Getters/Setters Detail |
---|
getMatch | |
public java.util.regex.Matcher getMatch() |
Matcher.start() gets the zero-based starting position of the match from the start of the find and replace range.
getMatchNode | |
public Node getMatchNode() |
getMatchOffset | |
public int getMatchOffset() |
getReplacement/setReplacement | |
public java.lang.String getReplacement() public void setReplacement(java.lang.String value) |
getGroupName/setGroupName | |
public java.lang.String getGroupName() public void setGroupName(java.lang.String value) |
When group name is null,
Default is null.
getGroupIndex/setGroupIndex | |
public int getGroupIndex() public void setGroupIndex(int value) |
Default is zero.
|
ASPOSE home |