I have a string like R09801E_ZJDE0001. I am able to split the first part of the string, the part before _ (R09801E), by using below systax
regexp_substr('R09801E_ZJDE0001', '[^_]+', 1, 1)
Can anyone please suggest how to get the second part of the string after the _ (ZJDE0001)?
