6

嗨,我有一个表格测试如下

NAME
---------
abc1234
XYZ12789
a12X8b78Y9c5Z

我尝试找出字符串中数字和字符的数量

select name,length(replace(translate(lower(name),'abcdefghijklmnopqrstuvwxyz',' '),'      ','')) as num_count,
length(replace(translate(name,'1234567890',' '),' ','')) as char_count
from test6;

它的执行很好,给出了输出

NAME    NUM_COUNT   CHAR_COUNT
abc1234         4       3
XYZ12789        5       3
a12X8b78Y9c5Z   7       6

但我的问题是不手动给出abcdefghijklmnopqrstuvwxyz and有什么选择1234567890

4

2 回答 2

10

@alfasin 答案很好,但是如果您使用的是 11g,那么它会变得更简单:

select name,
REGEXP_count(name,'\d') as num_count,
REGEXP_count(name,'[a-zA-Z]') as char_count,
from test6;
于 2012-07-08T12:00:04.070 回答
5

如果我理解正确,您使用的是 Oracle PLSQL,据我所知,没有任何“内置”方法(在 PLSQL 中)可以计算字符串中的数字/字符数。

但是,您可以执行以下操作来计算字符数:
select LENGTH(REGEXP_REPLACE('abcd12345','[0-9]')) from dual

和数字:
select LENGTH(REGEXP_REPLACE('abcd12345','[a-zA-Z]')) from dual

或者,在您的情况下:

select name,
LENGTH(REGEXP_REPLACE(name,'[a-zA-Z]','')) as num_count,
LENGTH(REGEXP_REPLACE(name,'[0-9]','')) as char_count,
from test6;

对于 Bill the Lizard:
我的答案在 Oracle 11g 上进行了测试,效果很好!
如果您决定再次删除我的答案,请善意添加评论以解释原因。我也在聊天室里找你...

于 2012-07-08T04:52:44.947 回答