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

  • Home
  • SEARCH
  • 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 8165365
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T19:31:12+00:00 2026-06-06T19:31:12+00:00

I have the following in my python script.. hostIP = sys.argv[1] hostsFileLoc = hosts.txt

  • 0

I have the following in my python script..

hostIP = sys.argv[1]
hostsFileLoc = "hosts.txt"

if not hostIP in open(hostsFileLoc).read():
    # Script to add if the string is not in file
else:
    # Print message

The only problem with this is that it is not an exact match, for example…

If my file contains:

192.168.0.111

And my hostIP is:

192.168.0.11

Then it will find it as a match. I thought I might be able to do this with regex, as there will always be a space ("\s+") or a comma ("\,") so I thought I could use something like

test = re.compile("^" + hostIP + "[\s\,]*")

and use test as my search, but this obviously does not work. I’ve tried to find some documentation on this but to no avail. Has anyone a suggestion on how I can use a variable with regex to have a more specific search.

Thanks

MHibbin

  • 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-06-06T19:31:13+00:00Added an answer on June 6, 2026 at 7:31 pm

    you can split your text file by delimiters (whitespace for example) and then find string in the list:

    if not hostIP in open(hostsFileLoc).read().split():
        # Script to add if the string is not in file
    else:
        # Print message
    

    Put your delimiter into split() if you use other than whitespaces

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

Sidebar

Related Questions

I have written following script in python which works fine: from sys import argv
I have inherited the following Python script: import urllib2 a = urllib2.urlopen('http://mysite/mypage.aspx?action=dosomething') a.read() a.close()
I have the following python script which takes some inputs and puts them in
I have the following simple python test script that uses Suds to call a
i have something similar to the following... used a python script to JSON to
I have the following script for sending mails using python import smtplib from email.mime.multipart
I have the following query that I'm executing using a Python script (by using
I have a python script that invokes the following command: # make After make,
I'm trying to solve the following problem: Say I have a Python script (let's
Let's say we have the following mega-simple Python script: print Initializing.... a=10 print Variable

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.