我的字符串“1406984110015”中有以下内容,我希望得到的内容;
str1 = 14
str2 = 06
str3 = 84
我在ORACLE中创建一个函数,在这种情况下将返回14.06.84
有什么想法吗?
答案 0 :(得分:5)
使用SUBSTR: SUBSTR Documentation
str1:=SUBSTR(source_string, 1, 2);
str2:=SUBSTR(source_string,3,2);
str3:=SUBSTR(source_string,5,2);
(当然假设您需要三组两个字符,如您的示例所示。)