Is there a known standard technique to parse a mailto
URL string into components using a C
program? Or should I do it manually using C
string library with my own logic?
mailto:someone@example.com?subject=This%20is%20the%20subject&cc=someone_else@example.com&body=This%20is%20the%20body
Is there a way to do it using regex APIs?