MATLAB: Extract formatted table text

formatted tableformatted table texttable

I got a table with formatted value and i want to make an array with the same values without the '$'. I've tried a lot of variations with %n, but i can not figure out how to do it. Anyone got a hint?

Best Answer

A={'$123' ; '$425'}
A=strrep(A,'$','')