|
|
clear_cache(self)
Clears the strings list cache |
|
|
|
|
__init__(self,
default_setup=True)
Initializes the Strings enumeration helper class |
|
|
|
|
refresh(self,
ea1=None,
ea2=None)
Refreshes the strings list |
|
|
|
|
| setup(self,
strtypes=STR_C,
minlen=5,
only_7bit=True,
ignore_instructions=False,
ea1=None,
ea2=None,
display_only_existing_strings=False) |
|
|
|
|
|
|
|
__getitem__(self,
index)
Returns a string item or None |
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|
|
|
STR_C = 0x0001
C-style ASCII string
|
|
|
STR_PASCAL = 0x0002
Pascal-style ASCII string (length byte)
|
|
|
STR_LEN2 = 0x0004
Pascal-style, length is 2 bytes
|
|
|
STR_UNICODE = 0x0008
Unicode string
|
|
|
STR_LEN4 = 0x0010
Pascal-style, length is 4 bytes
|
|
|
STR_ULEN2 = 0x0020
Pascal-style Unicode, length is 2 bytes
|
|
|
STR_ULEN4 = 0x0040
Pascal-style Unicode, length is 4 bytes
|