Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6890637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:18:27+00:00 2026-05-27T06:18:27+00:00

I’m in a class reviewing various languages and we’re building a text parser with

  • 0

I’m in a class reviewing various languages and we’re building a text parser with Lisp. I can get my Lisp program to do lots of different functions with numbers but I’m struggling with text. I want to just peek at the first character in a line to see if it contains a < then do something, but I can’t seem to figure out how to go about this simple task. Here’s my simple little code so far:

;;;Sets up the y.xml file for use
(setq file (open "c:\\temp\\y.xml"))

;;;Just reads one line at a time, (jkk file)
(defun jkk (x)
(read-line x)
)

;;;Reads the entire file printing each line, (loopfile file)
(defun loopfile (x)
(loop for line = (read-line x nil)
    while line do (print line))
)

This next part I tried to combine the loop with an if statement to see if it can find “<” and if so just print that line and skip any others which doesn’t work. Any help with doing this really easy task would be greatly appreciated. Never used Lisp or any other functional language before, I’m used to using functions like crazy in my VB and Java projects but I don’t have any decent reference materials for Lisp.

After this program is done we don’t have to mess with Lisp anymore so I didn’t bother to order anything. Trying Google Books.. starting to figure stuff out but this language is and old and tough one!

;;;Reads the entire file printing the line when < is found
(defun loopfile_xml (x)
(loop for line = (read-line x nil)

    while line do 
    (
        if(char= line "<")
            (print line)
    )
)
)

Thanks guys

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T06:18:28+00:00Added an answer on May 27, 2026 at 6:18 am

    First, Lisp is not C or Java – it has different indentation conventions:

    ;;;Sets up the y.xml file for use
    (setq file (open "c:\\temp\\y.xml"))
    
    ;;;Just reads one line at a time, (jkk file)
    (defun jkk (x)
      (read-line x))
    
    ;;;Reads the entire file printing each line, (loopfile file)
    (defun loopfile (x)
      (loop for line = (read-line x nil)
            while line do (print line)))
    

    and

    ;;;Reads the entire file printing the line when < is found
    (defun loopfile_xml (x)
      (loop for line = (read-line x nil)
            while line
            do (if (char= line "<")
                 (print line))))
    

    I would also give the variables meaningful names. x is not meaningful.

    The function char= works on characters. But both arguments in your code are strings. Strings are not characters. #\< is a character. Strings are also arrays, so you can get the first element of a string using the function aref.

    If you want to check if a line is just <, then you can compare the line using the function string= with the string "<".

    The documentation:

    • character comparison: char= and related.
    • string comparison: string= and related.
    • accessing array contents with aref.

    Lisp is old, but still used and it has a lot of interesting concepts.

    To learn Lisp is actually not very tough. You can learn the basics of Lisp in a day. If you already know Java, you may need two or even three days.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I need to clean up various Word 'smart' characters in user input, including but
I have a text area in my form which accepts all possible characters from
Does anyone know how can I replace this 2 symbol below from the string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.