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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:21:46+00:00 2026-05-27T00:21:46+00:00

Given a file contains lines such as: (?i:\bsys\.user_catalog\b) While reading those line, I want

  • 0

Given a file contains lines such as:

(?i:\bsys\.user_catalog\b)

While reading those line, I want the value to be a raw string (unescaped), meaning, in memory, line should be

r'(?i:\bsys\.user_catalog\b)'

instead of

(?i:\bsys\.user_catalog\b)

Which is escaped when passed over to libs such as sqlobject.

For instance, with sqlobject, if I state

Table(column=r'(?i:\bsys\.user_catalog\b)')

I get the desired results while if I state

Table(column='(?i:\bsys\.user_catalog\b)')

I do not.

So question is basically, I can I pass a raw string when I am not in declarative/assignment mode (e.g. a = r'string'), rather, the string is already in memory.

  • 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-27T00:21:47+00:00Added an answer on May 27, 2026 at 12:21 am

    The raw string notation is only used in Python source code; all strings declared as raw strings are “converted” to normal strings with the necessary escape sequences added during “compile time” (unlike (in Python 2) the two different string types string/Unicode string):

    >>> r"\b"
    '\\b'
    >>> "Hello"
    'Hello' 
    >>> u"Hello"
    u'Hello'
    

    If you read the string from a file, it will already be correctly escaped.

    (Assuming test.txt contains (?i:\bsys\.user_catalog\b)):

    f = open("test.txt").read()
    print f
    print repr(f)
    

    Output:

    (?i:\bsys\.user_catalog\b)
    '(?i:\\bsys\\.user_catalog\\b)'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given 2 file revisions I want to know how many lines were added/modified/deleted. I
given a somewhat complex file of unknown specification that among other things contains an
i want to find the mime-type for a given file extension on an IIS
I have an XML file which contains some data as given. <?xml version=1.0 encoding=UTF-8
I have a file consisting of digits. Usually, each line contains one single number.
I have been given a textfile which contains data on time sheet. That line
Given file names like these: /the/path/foo.txt bar.txt I hope to get: foo bar Why
I have to search a given file name (let say Keyword) in a directory
I have a functionality where a user is given file to download. It works
I'm working on a program that searches entire drives for a given file. At

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.