输入:This AbT5xYAppleUvW is a test.....
输入将是来自我无法控制的来源的文件内容。我需要将AbT5xYApple
替换为FruitApple
是否在AbT5xY
和Apple
之间存在空格字符(换行符,回车符,空格等)。例如。 AbT5xY Apple
或AbT5xY\nApple
也需要替换为FruitApple
注意我正在使用C#正则表达式
以下不起作用:
string input = Regex.Replace(input, "AbT5xY\S+AppleUvW", "FruitApple");
答案 0 :(得分:0)
根据上述评论,请使用此模式AbT5xY # "AbT5xY"
\s # <whitespace character>
* # (zero or more)(greedy)
Apple # "Apple"
jdbc:awsathena://athena.us-east-1.amazonaws.com:443/AwsDataCatalog/databasename