Parse Wav File Names

TracktionEngine saves WAV files in the format “_Track 5_Take_1.wav”.

Before I roll-my-own parser, is there a helper function in TracktionEngine that will parse the track number and take number from the file name?

No, and in general should not try and parse it, since the filename format can be configured by the user. However, in your product, you may not allow it to be configured, in that case, set the filename to be something easy to parse with WaveInputDevice::setFilenameMask.

In my case, there is no need for it to ever be changed, so I will set it to a convenient-to-parse format.

Thank you.