using System;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
string pattern = @"^#define (.*) (0x[0-9A-F]+)$";
string substitution = @"private const byte $1 = $2; // $1";
string input = @"/* Sensor Binary command class commands */
#define SENSOR_BINARY_VERSION_V2 0x02
#define SENSOR_BINARY_GET_V2 0x02
#define SENSOR_BINARY_REPORT_V2 0x03
#define SENSOR_BINARY_SUPPORTED_GET_SENSOR_V2 0x01
#define SENSOR_BINARY_SUPPORTED_SENSOR_REPORT_V2 0x04
/* Values used for Sensor Binary Report command */
#define SENSOR_BINARY_REPORT_IDLE_V2 0x00
#define SENSOR_BINARY_REPORT_DETECTED_AN_EVENT_V2 0xFF
";
RegexOptions options = RegexOptions.Multiline;
Regex regex = new Regex(pattern, options);
string result = regex.Replace(input, substitution);
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for C#, please visit: https://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex(v=vs.110).aspx