Skip to content

Instantly share code, notes, and snippets.

@erenes
erenes / ST2CSV.cs
Created February 11, 2022 21:54
Converts a string table from an uexp file (UE4.23) to a CSV file
using System.Text;
var filePath = @"ST_xxxx.uexp";
var outputPath = @"ST_xxxx.csv";
// Open file read only
using var fsRead = File.Open(filePath, FileMode.Open, FileAccess.Read);
using var br = new BinaryReader(fsRead);
// gloss over the header