Author Topic: Is it possible to create a dictionary with lisp  (Read 2398 times)

0 Members and 1 Guest are viewing this topic.

Adesu

  • Guest
Is it possible to create a dictionary with lisp
« on: July 12, 2007, 04:45:19 AM »
Hi Alls,
I would plan create a dictionary with Autolisp program, of cause the data base should place in external from Autolisp program, i.e notepad or others, because total data maybe very large memory, I hope over there would guide me to open way, how to create with true trick, I very appreaciated for your help,thanks.
here my code as sample.
Code: [Select]
(defun c:test (/)
  (setq opt (getstring "\nEnter new world to translate it<Name>: "))
  (if (= opt "")(setq opt "Name"))
  (if
    opt
    (progn
      (setq result "Nama")
      (alert (strcat "\nThis world is meaning"
     "\n"
     "\n" opt " = " result))
      ) ; progn
    )   ; if
  (princ)
  )     ; defun

JohnK

  • Administrator
  • Seagull
  • Posts: 10635
Re: Is it possible to create a dictionary with lisp
« Reply #1 on: July 12, 2007, 07:52:20 AM »
The searching/displaying/etc can be done very easy with lisp. The database is the tough part (takes a long time to create).

check out this thread: http://www.theswamp.org/index.php?topic=15299.0
TheSwamp.org (serving the CAD community since 2003)
Member location map - Add yourself

Donate to TheSwamp.org