;;It's possible to get variables out of your string with regexp user=> (re-find #"(\d\d\d) (USD)" "450 USD") ["450 USD" "450" "USD"] user=> (nth *1 1) "450" ;;thanks kotarak @ stackoverflow.com for this one
;;It's possible to get variables out of your string with regexp user=> (re-find #"(\d\d\d) (USD)" "450 USD") ["450 USD" "450" "USD"] user=> (nth *1 1) "450" ;;thanks kotarak @ stackoverflow.com for this one