I am trying to split a string using .str.split('$_') but this is not working.
Other combinations like 'W_' or '$' work fine but not '$'. I also tried .str.replace('$') - which also does not work.
Initial string is '$WA:G_COUNTRY'
using ClearanceUnq['Clearance'].str.split('$_') results in [$WA:G_COUNTRY] no split....
whereas ClearanceUnq['Clearance'].str.split('$') results in [, WA:G_COUNTRY] as expected