|
|
|
|
|
|
|
string
|
|
|
string
|
|
|
|
_isMainChar(self,
ch)
Determines if the given character should be considered a part of
the main part of this word or not based on the definition of the word
given by WordState. |
source code
|
|
|
|
|
|
|
|
|
AEPor
|
|
|
boolean
|
|
|
boolean
|
isAlpha(self,
ch)
Determines if the given character is a letter in the current
locale. |
source code
|
|
|
boolean
|
isNumeric(self,
ch)
Determines if the given character is a number in the current
locale. |
source code
|
|
|
boolean
|
|
|
boolean
|
|
|
boolean
|
|
|
boolean
|
isCap(self,
ch)
Determines if the given character is an upper case letter. |
source code
|
|
|
string
|
|
|
string
|
|
|
boolean
|
|
|
string
|
getSource(self)
Gets the unprocessed text of this word as it was seen in the
original text source. |
source code
|
|
|
integer
|
|
|
integer
|
|
|
boolean
|
moreAvailable(self)
Makes a guess as to whether or not there are more Words in the body of text from which this word
originated. |
source code
|
|
|
boolean
|
hasRepeat(self)
Gets if this Word has a character repeated more than the maximum
number of repetitions allowed or not. |
source code
|
|
|
boolean
|
|
|
boolean
|
|
|
boolean
|
|
|
boolean
|
|
|
boolean
|
|
|
string or None
|
|
|
string
|
|
|
string
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__
|
|
integer
|
curr_repeat
Indicates a character should be considered a repeat iff this value
> MaxRepeat.
|
|
boolean
|
has_main
Has at least one main character been parsed?
|
|
string
|
last_char
Last character appended to this Word
|
|
boolean
|
main_done
Is the main_part complete?
|
|
callable
|
main_ob
Function to invoke for each character in the main part of a
word
|
|
list
|
main_part
Part of this Word that will receive extra preparation for
output
|
|
boolean
|
more
Are there likely more Words after this one in the text source where this
Word originated?
|
|
AEPor
|
por
Point of regard indicating where this Word originated
|
|
list
|
source_word
Original text of this Word without any preparation for output applied
|
|
WordState
|
state
Settings that determine the definition of a Word and how it is prepared for output
|
|
boolean
|
trail_done
Is the trail_part complete?
|
|
callable
|
trail_ob
Function to invoke for each character in the trailing part of a
word
|
|
list
|
trail_part
Part of the word that will receive little preparation for
output
|