StringBuilders magic for very large strings #108
Replies: 1 comment 2 replies
-
|
Very nicely explained! So just that I get it right: the internal implementation of the |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
StringBuilders magic for very large strings
The StringBuilder class is used to create mutable sequences of characters. Strings are immutable, so if you need to perform multiple operations on a string, it is better to use a StringBuilder instead of a string. This is especially useful when you need to concatenate a large number of strings. But there is more magic to it, especially when we go BIG!
https://steven-giesel.com/blogPost/c0144fea-0ff8-4638-be01-b62b48ef7188
Beta Was this translation helpful? Give feedback.
All reactions