gpt4 book ai didi

c# - 正则表达式:获取所有单个字符,但不是在单引号之间

转载 作者:行者123 更新时间:2023-11-30 15:21:28 25 4
gpt4 key购买 nike

我需要一个 Regex 表达式来捕获字符串中的所有冒号,但当冒号在单引号之间时不需要,然后将其替换为符号 (@)。

我的测试字符串是:

select id, :DATA_INI, ':DATA_INI', titulo, date_format(data_criacao,'%d/%m/%Y %H:%i') str_data_criacao
from v$sugestoes
where data_criacao between :DATA_INI AND :DATA_FIM
order by data_criacao

我真正想要的是:

select id, @DATA_INI, ':DATA_FIM', titulo, date_format(data_criacao,'%d/%m/%Y %H:%i') str_data_criacao
from v$sugestoes
where data_criacao between @DATA_INI AND @DATA_FIM
order by data_criacao

我试过这个正则表达式,但出于某种原因它没有捕捉到第一个冒号:

/(?!'.*?):(?!.*?')/g

enter image description herePS:有嵌套引号的可能,这些字符串也抓不到。

有人知道我在这里缺少什么吗?我实际上使用的是 C#。

最佳答案

这可以做到:

:(?=([^']*'[^']*')*[^']*$)

RegEx tester

它只匹配那些后面有偶数个引号的冒号(正面向前看)。这也涵盖了引号在带引号的字符串中被转义(对于 SQL)的情况,因为它们前面有另一个引号,因此保持引号计数均匀。

如评论中所述,此正则表达式效率很低,因为它会多次扫描字符串的某些部分:每次找到冒号时,都会扫描字符串的其余部分以查看(非转义)引号的数量甚至。

但对于 SQL 字符串,这似乎是您要处理的字符串类型,这应该不是问题,它们通常不是很长的字符串,也没有数百个引号或冒号。

C# 解决方案

根据上述想法,您可以使用以下 C# 代码:

using System;
using System.Text.RegularExpressions;

class Program
{
static void Main()
{
// This is the input string we are replacing parts from.
string input = "select id, :DATA_INI, ':DATA_INI', titulo, date_format(data_criacao,'%d/%m/%Y %H:%i') str_data_criacao\n"
+ "from v$sugestoes\n"
+ "where data_criacao between :DATA_INI AND :DATA_FIM AND ':TEST'\n"
+ " and 'test ''string :DATA_INI '' :DATA_INI '\n"
+ "order by data_criacao";

string output = Regex.Replace(input, ":(?=([^']*'[^']*')*[^']*$)", "@");

Console.WriteLine(output);
}
}

查看它在 ideone.com 上运行.

关于c# - 正则表达式:获取所有单个字符,但不是在单引号之间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37590248/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com