From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!nntp-feed.chiark.greenend.org.uk!ewrotcd!news.szaf.org!feeder.erje.net!1.eu.feeder.erje.net!weretis.net!feeder4.news.weretis.net!news.mixmin.net!aioe.org!.POSTED!not-for-mail From: Victor Porton Newsgroups: comp.lang.ada Subject: Simple string template formatter (Dmitry A. Kazakov take note) Date: Wed, 22 Nov 2017 22:23:51 +0200 Organization: Aioe.org NNTP Server Message-ID: NNTP-Posting-Host: edFHTOfx8phAphItWrZ8cQ.user.gioia.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: abuse@aioe.org User-Agent: KNode/4.14.10 X-Notice: Filtered by postfilter v. 0.8.2 Xref: feeder.eternal-september.org comp.lang.ada:49068 Date: 2017-11-22T22:23:51+02:00 List-Id: I created a simple string template formatter (no if-then-else, no include, just substitution of variables). Example: "First phrase: {1}. Second phrase: {2}." This formatter is suitable for short strings, such as phrases for gettext. https://github.com/vporton/xml-boiler/blob/master/src/boiler-auxiliary-string_formatter.ads https://github.com/vporton/xml-boiler/blob/master/src/boiler-auxiliary-string_formatter.adb My code was not tested! Dmitry, I ask you to add something like this to your Simple Components. My program anyway uses Simple Components, so after you implement it, I can remove these files from my sources. I released the files in question both GPLv3 and Apache License 2.0. So feel free to use it as a coding example. -- Victor Porton - http://portonvictor.org