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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T09:44:10+00:00 2026-05-24T09:44:10+00:00

i got an inputfile which contains a javascript code which contains many five-figure ids.

  • 0

i got an inputfile which contains a javascript code which contains many five-figure ids. I want to have these ids in a list like:

53231,53891,72829 etc

This is my actual python file:

import re

fobj = open("input.txt", "r")
text = fobj.read()

output = re.findall(r'[0-9][0-9][0-9][0-9][0-9]' ,text)

outp = open("output.txt", "w")

How can i get these ids in the output file like i want it?

Thanks

  • 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-24T09:44:10+00:00Added an answer on May 24, 2026 at 9:44 am
    import re
    # Use "with" so the file will automatically be closed
    with open("input.txt", "r") as fobj:
        text = fobj.read()
    # Use word boundary anchors (\b) so only five-digit numbers are matched.
    # Otherwise, 123456 would also be matched (and the match result would be 12345)!
    output = re.findall(r'\b\d{5}\b', text)
    # Join the matches together
    out_str = ",".join(output)
    # Write them to a file, again using "with" so the file will be closed.
    with open("output.txt", "w") as outp:
        outp.write(out_str)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file which contains several spelling variants of many words: For
I have a CSV file the first row of which contains the variables names
I have got an input file upload , need to check which file is
I have a FindFile routine in my program which will list files, but if
Got a bit of a mind freeze at the moment. I have the following
Got some code that is not mine and its producing this warning atm: iehtmlwin.cpp(264)
I've got a Perl script which consumes an XML file on Linux and occasionally
c code extern C __declspec(dllexport) int export(LPCTSTR inputFile, string &msg) { msg = haha
I have a field of type image in my database which is mapped as
I've already got some code to read a text file using fscanf() , and

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.