X-Plane Scenery Library

written by X-Coder 

The X-Plane Scenery Library is a static is part of the Scenery Editor X Solution.

OS Platform
Windows         

x32          
x64          
Linux                  

x32          
x64          
Mac                      

x32          
x64          

Build Targets:


Overview:


Single function call that tokenizes a string, splitting off given delimiters.

  • UTF-8 safe (but delimiters cannot be UTF-8 characters)
  • Platform independent

Source:


**Defined:** X-PlaneSceneryLibrary.lib
**Declared:** Tokenizer.h
**Included in:**

- X-PlaneSceneryLibraryUtils.h

- X-PlaneSceneryLibraryParsers.h

# Function Header:

std::vector\ Tokenizer::TokenizeString(std::string& InString, std::vector\ DelimitingChars)

# Arguments:

- **InString:** The string to tokenize. Passed by reference but not modified.

- **DelimitingChars:** A vector containing chars that act as delimiters. Passed by copy, not modified.

# Returns:

- A vector of individual tokens