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 7593411
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T21:09:44+00:00 2026-05-30T21:09:44+00:00

I’m trying to parse a file in which quotation files are used to encapsulate

  • 0

I’m trying to parse a file in which quotation files are used to encapsulate strings. For instance, the file might contain a line like this:

    "\"Hello there, my friends,\" the tour guide says." me @ swap notify

But it might also contain lines like this:

    "I'm a dingus who wants to put a backslash at the end of my statements. \\" me @ swap notify

In that example, the quotes shouldn’t be escaped, but a single backslash should remain.

Is there any function I can use to extract that full quoted statement? \n for newline and \r for carriage return also show up on occasion, so I’d like to get those two, but only after I have the full string isolated.

  • 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-30T21:09:45+00:00Added an answer on May 30, 2026 at 9:09 pm
    1. Parse out the string part. You could use a regular expression or string partition
    2. ast.literal_eval the string and assign it to a variable.

    Test:

    >>> import re
    >>> import ast
    >>> with open('test.txt.') as f:
    ...  for line in f:
    ...   m = re.match('(.*) \w+ @ \w+ \w+', line)
    ...   print ast.literal_eval(m.group(1))
    ...
    "Hello there, my friends," the tour guide says.
    I'm a dingus who wants to put a backslash at the end of my statements. \
    

    The regex says “Match anything and store it as group 1, up to a space, a word, a space, @-sign, space and a word”. You then retreive the group with the .group(1) syntax. The parenthesis define a group, see regex documentation.

    Here’s a version that tries to parse the string as greedily as possible, by failing and retrying until a match is found, or no match can be made:

    import re
    import ast
    
    def match_line(line):
        while line:
            print "Trying to match:", line
            try:
                return ast.literal_eval(line)
            except SyntaxError, e:
                line = line[:e.offset - 1]
            except ValueError: # No way it would ever match
                break
        return None
    
    with open('test.txt.') as f:
        for line in f:
            match = match_line(line.strip())
            print "Matched:", match
            print
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to render a haml file in a javascript response like so:
I am trying to understand how to use SyndicationItem to display feed which is
I used javascript for loading a picture on my website depending on which small
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
i want to parse a xhtml file and display in UITableView. what is the
I would like to run a str_replace or preg_replace which looks for certain words
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I would like to count the length of a string with PHP. 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.