Select Page

How to Concatenate Strings in Rust

This tutorial will go through concatenating strings and describe the two types of strings in Rust. Table of contentsStrings in RustConcatenate Strings in Rust using push_str()Concatenate Strings in Rust using format!()Concatenate Strings in Rust using +...

How-to Guide for Python Uppercase

In Python, we can use built-in functions to manipulate strings. For example, we may want to capitalize the first characters in a name for form entry. The upper() function is helpful for converting all case-based characters in a string to uppercase. We can use the...