How to use variables with regex?

后端 未结 2 883
孤街浪徒
孤街浪徒 2020-12-11 12:03

This is the input string: 23x^45*y or 2x^2 or y^4*x^3.

I am matching ^[0-9]+ after letter x. In other words I am matching

2条回答
  •  孤街浪徒
    2020-12-11 12:13

    You can use the pattern @"[cEle]\^\d+" which you can create dynamically from your character array:

    string s = "23x^45*y or 2x^2 or y^4*x^3";
    char[] letters = { 'e', 'x', 'L' };
    string regex = string.Format(@"[{0}]\^\d+",
        Regex.Escape(new string(letters)));
    foreach (Match match in Regex.Matches(s, regex))
        Console.WriteLine(match);
    

    Result:

    x^45
    x^2
    x^3
    

    A few things to note:

    • It is necessary to escape the ^ inside the regular expression otherwise it has a special meaning "start of line".
    • It is a good idea to use Regex.Escape when inserting literal strings from a user into a regular expression, to avoid that any characters they type get misinterpreted as special characters.
    • This will also match the x from the end of variables with longer names like tax^2. This can be avoided by requiring a word boundary (\b).
    • If you write x^1 as just x then this regular expression will not match it. This can be fixed by using (\^\d+)?.

提交回复
热议问题