Category:Strfmt: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page with "{{library}} “strfmt” is a string formatting library for the Nim programming language similar to Python’s format. It is easier to use than the basic functions provided by...")
 
No edit summary
 
Line 1: Line 1:
{{library}}
{{library}}
“strfmt” is a string formatting library for the Nim programming language similar to Python’s format. It is easier to use than the basic functions provided by the standard module “strutils”. The standard module “strformat", which provides interpolation, may be more convenient than “strfmt” in many cases, but the latter is very useful when we want to work with a format string.
“strfmt” is a string formatting library for the Nim programming language similar to Python’s format. It is easier to use than the basic functions provided by the standard module “strutils”. The standard module “strformat", which provides interpolation, may be more convenient than “strfmt” in many cases, but the latter is very useful when we want to work with a format string.

Link: https://github.com/bio-nim/nim-strfmt

Latest revision as of 20:10, 7 February 2021

Library
This is an example of a library. You may see a list of other libraries used on Rosetta Code at Category:Solutions by Library.

“strfmt” is a string formatting library for the Nim programming language similar to Python’s format. It is easier to use than the basic functions provided by the standard module “strutils”. The standard module “strformat", which provides interpolation, may be more convenient than “strfmt” in many cases, but the latter is very useful when we want to work with a format string.

Link: https://github.com/bio-nim/nim-strfmt

Pages in category "Strfmt"

The following 3 pages are in this category, out of 3 total.