如果数组包含100000000项,那么输出所有项目太长了,所以我可以知道,如果我只想输出10项包含的地址,如!da前10位地址,该如何处理?
发布于 2016-09-06 11:01:39
sos !da命令接受-start和-length参数:
-start <startIndex>: optional, only supported for single dimension array.
Specify from which index the command shows the elements.
-length <length>: optional, only supported for single dimension array.
Specify how many elements to show.在索塞克斯中,可以将!mdt与-start:和-count:参数一起使用:
!sosex.mdt [typename | paramname | localname | MT] [ADDR]
[-r[:level]] [-e[:level]] [-start:index] [-count:n]或者你可以使用NetExt。!wdo命令适用于数组,并具有限制索引的/start和/end参数:
!wdo [/forcearray] [/shownull] [/noheader] [/noindex] [/mt <expr>]
[/start <expr>] [/end <expr>] <expr>
/mt <expr> - mt,Method table for value objects (space-delimited)
<expr> - Address,Object Address
/start <expr> - Starting index to show in an array (space-delimited)
/end <expr> - Ending index to show in an array (space-delimited)
/forcearray - For Byte[] and Char[] arrays show items not the string
/shownull - For arrays will show items that are null
/noheader - Display only object address and field and values
/noindex - For arrays it will show values without the index
/tokens - show class and type tokens for fieldshttps://stackoverflow.com/questions/39346656
复制相似问题