String Handling is Just So Important!
String handling is such a COMMON thing for computer programs to have to do!
Of course string handling can take MANY forms!
Some strings are INPUT from users or files or other software.
Some strings are OUTPUT to users or files or other software.
Some strings are used for LOGGING purposes.
Some strings are used for CONFIGURATION purposes.
TRANSFORMING strings is the main thing that some computer programs do!
No matter what kind of programming you're doing, I think that knowing how to work with STRINGS is an essential thing to know!
Those new to Rust may want to consider reading the Working with strings in Rust article by Amos if they want to LEARN MORE about Rust and strings.
Strings are a thing that seem so simple, yet they can quickly become so COMPLEX!