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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T01:57:11+00:00 2026-06-15T01:57:11+00:00

I have a file containing lines of something.something(hexvalue1,hexvalue2) I am trying to convert these

  • 0

I have a file containing lines of something.something(hexvalue1,hexvalue2)

I am trying to convert these hexvalues to binary. From what I researched I figured out I will have to search for hex values in each line and then convert them to binary. I am not sure how to do the search in a string for hex values with other variables in it.
Note : All the lines are in the same format.

When I do :

for line in file:
    string = line
    string.split('(')

does not split at the ‘(‘

  • 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-15T01:57:13+00:00Added an answer on June 15, 2026 at 1:57 am

    In python, all string methods return new objects (they have to since strings are an immutable type). str.split returns a list. So to parse your string, it would be something like:

    for line in file:
        left,right = line.split('(',1)
        hexvalues = right.split(')')[0]
        hex1,hex2 = hexvalues.split(',')
    

    For those more inclined toward regular expressions:

    import re
    >>> re.findall(r'\(([^)]+)',"this.is(0xffaabb,0x112214)")
    ['0xffaabb,0x112214']
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an HTML file containing these lines - <script>PrintFileURL("13572_BranchInformationReport_2012-06-29.xml","13572_BranchInformationReport_2012-06-29.zip",0,"184277","Jun 29 1:30","/icons/default.gif")</script> <script>PrintFileURL("13572_BranchInformationReport_2012-07-02.zip","13572_BranchInformationReport_2012-07-02.zip",0,"184302","Jul 2
I have a txt file that created in notepad , containing these lines for
I have a file containing some lines of code followed by a string pattern.
Suppose I have a file containing some lines: line 1 ... line 2 ...
I have a text file containing two or more types of lines. I would
I have to filter a text file filter.tmp containing two types of lines, this
From the registry, for a given file type, I get a string containing something
If I have input file containing statementes asda rertte something nothing here I want
I have a file called !input.txt containing multiple lines, each line is a random
I have a big file with tens of thousands of lines containing data separated

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.