cstdotnet/doc
Tony Bark df7197609d Preliminary support for .NET 8
- Native compatibility
- Parser can now be consumed from non-.NET programming languages
2023-08-12 19:05:45 -04:00
..
changelog.md Preliminary support for .NET 8 2023-08-12 19:05:45 -04:00
README.md Moved second README and change log from source to /doc 2023-08-10 22:41:12 -04:00

CST.NET

Caret-Separated Text (or CST) is a key-value pair format represented by digits or words as keys and the value as text enclosed between carets. (e.g. <key> ^<text>^) Any text which is not enclosed with carets is considered a comment and ignored. Neither strings nor comments may use the caret character. CST.NET is a library for parsing the CST format.

Usage

Basic Parsing

If you want to create your own internal CST parsing framework, you can use the CST or CaretSeparatedText class directly.

1 ^The quick brown fox jumps over the lazy dog.^
#r "nuget:CSTNet,2.0.103"
using CSTNet;

var file = File.ReadAllText("example.cst");
var example = CST.Parse(file, 1);

// "The quick brown fox jumps over the lazy dog."
Console.WriteLine(example);

In Production

#r "nuget:CSTNet,2.0.103"
using CSTNet;

var english = new UIText(); // UIText assumes English
var swedish = new UIText("swedish");
var engExample = english.GetText(152, 1); // english.dir/_154_miscstrings.cst
var sweExample = swedish.GetText(152, 1); // swedish.dir/_154_miscstrings.cst

Console.WriteLine(engExample);
Console.WriteLine(sweExample);