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
0
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 GmbH0 -
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?
0 -
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üßen0 -
in die Befehlszeile kopieren
[code](if(setq aw(ssget"_X" '((0 . "TEXT")(1 . "*AP*"))))
(command"_chprop"aw"")
)[/code]0 -
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]0
This discussion has been closed.