Logo

Programming-Idioms

History of Idiom 153 > diff from v6 to v7

Edit summary for version 7 by TheVTM:
New Rust implementation by user [TheVTM]

Version 6

2017-04-19, 11:19:22

Version 7

2017-04-27, 10:30:04

Idiom #153 Concatenate string with integer

Create string t as the concatenation of string s and integer i.

Idiom #153 Concatenate string with integer

Create string t as the concatenation of string s and integer i.

Extra Keywords
int concat
Extra Keywords
int concat
Code
let t = format!("{}{}", s, i);
Doc URL
https://doc.rust-lang.org/std/macro.format.html
Demo URL
https://is.gd/nSKLyX