#string-formatting #format-text #format-string #string #format #macro #text

macro inline_format

A more readable collection of string formatting macros

4 releases

0.2.3 Aug 23, 2023
0.2.2 Aug 23, 2023
0.2.1 Jun 6, 2023
0.1.0 Jun 2, 2023

#311 in Value formatting

Download history 4/week @ 2024-02-23 2/week @ 2024-03-01 1/week @ 2024-03-08 5/week @ 2024-03-15 14/week @ 2024-03-29 30/week @ 2024-04-05 11/week @ 2024-04-12

55 downloads per month
Used in 3 crates (2 directly)

MIT license

17KB
290 lines

inline_format

GitHub Badge crates.io Badge docs.rs Badge Build Status Badge

A more readable collection of string formatting macros.

use inline_format::format;

let val = 2 + 2;
assert_eq!(
	std::format!("text {{}} {val:04} text {:o}", 10 * 10),
	     format!("text {} " val:04 " text " 10 * 10:o)
);

Features

  • format! macro.
  • write! macro.
  • writeln! macro.
  • print! macro.
  • println! macro.
  • eprint! macro.
  • eprintln! macro.
  • format_args! macro.
  • Optional comma separation.
  • Named parameters.

STD Problems

The format macros in this crate work almost the same as the standard format macros.

The std macros have inline identifiers, but lack support for expressions.

You end up needing to split up your expressions and the places they go in the string. And this pattern only gets worse when you add more arguments and mix identifiers and expressions.

Unless you save expressions to variables, suddenly you need to count and keep track of which arguments go where and which formatting traits get applied.

Modifying those arguments might even lead to mistakes as well, especially when converting to and from inline with the string. !("{val}") -> !("{}", val).

One built in solution is using named parameters which does improve the experience, but it still has the disadvantage of being after the string.

Usage

This crate solves all of that by moving the code to outside of the string, and removing the concept of separate arguments (aside from the stream target in write! and writeln!).

// Glob importing from it will cause a conflict with Rust's std prelude.
// If you'd like a different name there's always `inline_format::{format as iformat}`.
use inline_format::format;

let val = 2 + 2;
format!("text {} " val:04 " text " 10 * 10) // text {} 0004 text 100

// Comma separation is optional.
// All other examples will be without commas.
format!("text {} ", val:04, " text ", 10 * 10) // text {} 0004 text 100

Now you can see exactly where your expressions are located in the string at a glance, and what formatting traits are applied to them if any. All by continuously reading left to right.

On top of that, there's no need to escape {} since there's no special syntax inside of the string anymore.

Since the macros compile to the std macro equivalents, they should support the same things and do what you'd normally expect them to do.

More Examples

Joining two expressions.

To join multiple expressions in a row, put "" in between them.

format!(2 + 2 "" 10 * 10 :04) // 40100

Using blocks.

If you have a longer expression you might need to close it in a block.

format!({
	let val = 2 + 2;
	val
} "" 10 * 10 :04) // 40100

Using named parameters.

If you'd like to use an expression multiple times, you can name it and reference the name.

Format traits apply to the section not the variable.

Because of how format_args! works the named parameters don't live long enough, so they get automatically cloned for you rather than evaluated multiple times.

format!(x10 = 10 * 10:o " " x10) // 144 100

// Named parameters can also be surrounded in blocks.
// Format traits go outside the block.
format!({x10 = 10 * 10}:o " " x10) // 144 100

Unbalanced fill character.

Rust's macro syntax absolutely cannot have unbalanced braces or quotes.

The following produces an error.

format!(2:"<5)

In order to fix this, wrap the traits in quotes and escape the character if it's a ".

format!(2:"\"<5") // 2""""

Dependencies

~0.4–0.8MB
~19K SLoC