SQL H2数据库从字符串中选择数字+字母数字字符

时间:2016-03-22 18:03:48

标签: sql regex string chat

我尝试只选择数字后跟字母数字字符

5h 1
5h 5 8h 8 12h 10
12h 10 48h 20
5h 1 8h 1 12h 1 24h 1 48h 1 72h 1
5h 1 8h 1 12h 1 24h 1 48h 1 72h 1

例如,在第二行5h 5 8h 8 12h 10中,我需要删除数字5, 8, 10,即未跟随字符的数字5h 8h 12h。结果应为REGEXP_REPLACE (resource, '[^\w\.@-]', ' ' )

我已经删除了特定的字符:

$(document).ready(function() {
  $("#UpdateButton").click(update);
  $('#NatAm').change(update);
});

function update() {
  $.ajax({
    url: '/Transactions/NativeUpdate',
    type: 'POST',
    dataType: 'json'
  });
}

1 个答案:

答案 0 :(得分:0)

试试这个正则表达式

REGEXP_REPLACE (resource, '\b[0-9]+\b', ' ' )

如果\\b不起作用,请使用\b。我不确定它是否需要双重逃脱。

<强> Regex101 Demo