using regular express to analyze lisp code

Kelie kf9150 at gmail.com
Thu Oct 4 13:13:59 EDT 2007


hello,

i've spent couple of hours trying to figure out the correct regular
expression to catch a VisualLisp (it is for AutoCAD and has a syntax
that's similar to common lisp) function body. VisualLisp is case-
insensitive. Any line beginning with ";" is for comment (can have
space(s) before ";").

here is an example of VisualLisp function:

(defun get_obj_app_names (obj / rv)
  (foreach app (get_registered_apps (vla-get-document obj))
    (if	(get_xdata obj app)
      (setq rv (cons app rv))
    )
  )
  (if rv
    ;;"This line is comment (comment)"
    ;;) This line is also comment
    (acad_strlsort rv)
    nil
  )
)

for a function named foo, it is easy to find the beginning part of the
function
"(defun foo", but it is hard to find the ")" at the end of code block.
if eventually i can't come up with the solution using regular
expression only, what i was thinking is after finding the beginning
part, which is "(defun foo" in this case, i can count the parenthesis,
ignoring anything inside "" and any line for comment, until i find the
closing ")".

not sure if i've made myself understood. thanks for reading.

kelie




More information about the Python-list mailing list