Conversation

Anybody knows how to demangle a string, not a symbol, in using Python?

1
1
0
@joxean As I see there are several ...Demangler classes under the Features directory along with wrapper scripts too that demonstrate their use. If you need help translating this Java->Python lmk!
1
0
1

@buherator Thank you very-very much! That worked:

```
>>> from ghidra.app.util.demangler import DemanglerUtil
>>> du = DemanglerUtil()
>>> print(du.demangle("_ZN9wikipedia7article6formatEv"))
__rustcall wikipedia::article::format(void)
```

0
2
1

@buherator Thank you again :) I might annoy you in the near future.

0
0
1