Text Parser for C# Comments

I have been asked to proofread the comments of a C# file (*.cs). I have decided to use Passolo to do this. The comments have the following construct:

/// <summary>
/// The variable name of the variable named "signal".
/// </summary>
public const string VariableNameSignal = "signalgenerator/signal";

I have added a text parser rule that uses Regex to match the strings to be proofread.

I am using the following regex: \/\/\/\s(?=[A-Z])

The preview marks the text 'The variable name of the variable named "signal".' yellow as expected. The Strings tab also shows the strings as expected.

However when I apply the text parser to the file, I get the following in the translation window:

/// The variable name of the variable named "signal".
///

What am I doing wrong?

Best regards

Robert

Parents Reply Children