Is there a simple elegant method to return the difference between two unordered, delimited strings in Oracle using PL/SQL?
Example:
String A: "a1, b4, g3, h6, t8, a0"
String B: "b4, h6, a0, t8, a1"
Difference: "g3"
I don't have access to APEX_UTIL as suggested in this answer Difference between two unordered deliminted lists (Oracle)