Alternatively, copy all mtexts to new temp file, select all and explode. Run search and replace %%U with blank.
Convert all texts to mtexts
(defun c:t2m ( / *error* ss i )
(defun *error* ()
(setvar 'cmdecho 1)
(princ)
)
(setq ss (ssget '((0 . "TEXT"))) i -1)
(setvar 'cmdecho 0)
(while (< (setq i (1+ i)) (sslength ss))
(command "_.txt2mtxt" (ssname ss i) "")
)
(setvar 'cmdecho 1)
(princ "\nDone!")
(princ)
)
Use my script above.
Miljenko Hatlak

Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.