vote up 0 vote down star

Usually I use streams for formatting stuff however in this case ?I don't know the format until runtime.

I want to be able to take something like the following format string:
Hello {0}! Your last login was on {1,date:dd/mm/yy}.
...and feed in the variables "Fire Lancer" and 1247859223, and end up with the following formatted string:
Hello Fire Lancer! Your last login was on 17/07/09.

In other languages I use there is built in support for this kind of thing, eg pythons format string method, however in c++ there doesn't seem to be any such functionality, accept the C print methods which are not very safe.

Also this is for a high performance program, so whatever solution I use needs to parse the format string once and store it (eg mayby a Parse method that returns a FormatString object with a Format(string) method), not reparse the string every time the format method is called...

flag

61% accept rate
3  
Your high-performance program rapidly greets the user? – GMan Jul 17 at 19:42
@GMan hahahahaha. Im still asking myself that question too – Edison Gustavo Muenz Jul 17 at 20:03

3 Answers

vote up 2 vote down

Your format string looks very much like those used in ICU MessageFormat. Did you consider using it?

link|flag
vote up 1 vote down

Boost Formatting does that for you:

http://www.boost.org/doc/libs/1_39_0/libs/format/doc/format.html

Check out this question and answer for examples of usage:

link|flag
vote up 0 vote down

boost::format will do the positional arguments portion, but not the date formatting...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.