Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C++

Idiom #46 Extract beginning of string (prefix)

Create the string t consisting of the 5 first characters of the string s.
Make sure that multibyte characters are properly handled.

auto t = s.substr(0, 5);

The way of handling multibyte characters depends on the exact type of s, e.g. string, wstring, etc.
T : String := S (1 .. 5);

New implementation...