selecting MText or Text with wildcards

Hello.

is there a posibility to select al Text-Elements which contain a certain String p.e. *AP* and then operate with them. 

With selected Text I found "content" (Inhalt) but the field does not accept *  *

With MText there is no such field. 

What can I do? 

Thank you 

Comments

  • Hallo Herr Frank,

    leider habe ich Ihre Frage nicht ganz verstanden. Können Sie es evtl. in deutsch noch einmal stellen?

    Mit freundlichen Grüßen

    Mustafa Kocatürk
    below software GmbH
  • Guten Abend,

    ich möchte gerne alle Texte (Text oder MText) die die Zeichenfolge *AP* beinhalten auf einen eigenen Layer verschieben. 

    wie mache ich das in Bricscad?

  • Start the _FIND command ( you can use the shortcut key Ctrl+F )
    Fill in AP ( not *AP* ) in the Find Text field and press the Select All button.
    This will select all Text and Mtext entities containing the string "AP"

    Herzlichen Grüßen
  • in die Befehlszeile kopieren
    [code](if(setq aw(ssget"_X" '((0 . "TEXT")(1 . "*AP*"))))
      (command"_chprop"aw"")
      )[/code]
  • if you want to include Strings in short MText and Text take this:
    [code](if(setq aw(ssget"_X" '((0 . "*TEXT")(1 . "*AP*"))))
      (command"_chprop"aw"")
      )[/code]

This discussion has been closed.