# Decode VBA Number Arrays to Strings > Convert VBA macros that use Chr() number sequences into readable text **Tools:** [[tools/oledump-py|oledump-py]], [[tools/numbers-to-string-py|numbers-to-string-py]] **FOR610 Lab:** 3.3 ## Commands ```bash # Extract VBA and convert number sequences to text oledump.py -s -v | numbers-to-string.py -j # Same but with line-break formatting for readability oledump.py -s -v | numbers-to-string.py -j | sed 's/;/;\n/g' ``` #recipe #oledump-py #numbers-to-string-py