Chris
01/21/2022, 4:43 AMREGEXP_SUBSTR ('1234 test corporation', '(\S*)(\s)') - Successfully pulls 1234
REGEXP_SUBSTR('1234 test corporation', '[^\s]+$') - pulls 't corporation' I see that it's pulling everything after the first 's', but I'm not sure why exactly. I want it to return 'test corporation'
battk
01/21/2022, 5:11 AMbattk
01/21/2022, 5:11 AMbattk
01/21/2022, 5:28 AMREGEXP_SUBSTR('1234 test corporation', '[^s]+$')
Chris
01/21/2022, 1:48 PM