yushang
yushang

Reputation: 133

print a null-terminated string in windbg

Which windbg command will print string in a executable ? For now , I'm using db command but it's output is very inconvenient to copy and paste . I also tried ds command , seems not work . Many thanks !

Upvotes: 1

Views: 5113

Answers (1)

Marc Sherman
Marc Sherman

Reputation: 2373

For single byte strings, use da. For unicode strings, use du.

Upvotes: 4

Related Questions