string-le 0.2.2

Extract every string in a codebase, with its position, so a person can read them
1
2
3
4
5
6
7
8
9
10
11
12
13
// A comment mentioning "the docs" is prose, not a literal.
class Messages
{
    const string Path = @"C:\Users\test";
    const string Quoted = @"He said ""hi"" loudly";
    const string Spanning = @"first
second";
    const string Plain = "say \"hi\"";
    const char Marker = '"';
    const string Empty = "";

    static string Greet(string name) => $"Hello, {name}!";
}