Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 2.08 KB

tutorial.md

File metadata and controls

33 lines (25 loc) · 2.08 KB

Tutorial

Introduction

This tutorial will give you a lesson in how to use the UtfString library as well as providing an introduction to Unicode and the UTF encodings.

The string classes in the UtfString library are based on the string classes in the C++ Standard Template Library (STL). This makes it a lot easier for those who are already familiar with those string classes to use the UtfString library. This tutorial assumes that you are familiar with C++ and the STL string classes, so if you aren't already familiar with the STL, find yourself a good STL book or tutorial.

The interfaces of UtfString::Utf8String and UtfString::Utf16String are very similar, so most of the tutorial will apply to both. So When the tutorial mentions a "UtfString", it is talking about concepts that apply to both UtfString::Utf8String and UtfString::Utf16String Subsequently, when the tutorial mentions "UtfChar", it is talking about concepts that apply to both UtfString::Utf8Char and UtfString::Utf16Char. If the tutorial specifically mentions a specific class name, the concept applies only to that specific class.

Tutorial Topics

Go to Main Page