Message 1 of 14
How to strip values as text at a text list
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Please , I need to strip and discard all text that only represent a value , and keep text despite it have some value in.
From this list
(setq text+value-list(list "SUBRASANTE"
"C.T.N." "SUB-BASE" "0.00" "CORTE CAJA 2"
"CAJA 100%" "0.01" "0.02" "0.03" "16.59"
"17.86" "18.41" "2025.81" "31421.14" "22.04"
"22.39" "33.62"
))
To this one
(setq no-value-list
(list
"SUBRASANTE" "C.T.N." "SUB-BASE" "CORTE CAJA 2" "CAJA 100%") ;_ end of list
) ;_ end of setq