Hello,


I have a QString which contains octal escape sequences that i have to parse.

A string can for example look like this:

Qt Code:
  1. "test123/032test/032/0352"
To copy to clipboard, switch view to plain text mode 
which should result in

Qt Code:
  1. "test123 test #2"
To copy to clipboard, switch view to plain text mode 

after i am done with replacing the octal escape sequences.

I tried to use QRegExp for this, but I am not able to filter the sequences.



Would really appreciate any help.

Thank you in advance.