我的字符串如下
ThisSentence.should.split.beforeFirstPeriod.ofTheSentence
我想选择ThisSentence
。
如何使用regexp_substr()
?
答案 0 :(得分:4)
简单SUBSTR()
和INSTR()
可以完成相同的工作:
SUBSTR(YourString, 0, INSTR(YourString, '.')-1)
答案 1 :(得分:3)
regexp_substr()
,它提供了更多通用功能:
select regexp_substr(str, '[^.]+', 1, 1)