Python Forum
TypeError: 're.Match' object is not iterable
Thread Rating:
  • 2 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
TypeError: 're.Match' object is not iterable
#1
I was writing the following Python Code for copying search results (phone numbers) to a new .txt file and I got a TypeError. Please what other way can use to copy the "match" in the for loop to a new file?

Please help you if you can... Thanks!

import re
pattern = re.compile(r"\+\d\d\d\d\d\d\d\d\d\d\d\d\d")

with open("Tunj1.txt", "r") as wadb:
    init_content = wadb.read()

matches = pattern.finditer(init_content)

for match in matches:
    print(match)
    with open("Extracted Numbers.txt", "w") as wadb_Extracted:
        for line in match:
            wadb_Extracted.write(line)

Error:
Traceback (most recent call last): File "C:/Users/Charles Auspicks/PycharmProjects/HelloWorld/app.py", line 14, in <module> for line in match: TypeError: 're.Match' object is not iterable
Reply
#2
matches is an iterator that returns Match objects.

Match objects themselves have information inside, but are not themselves iterable. So when you do for line in match, the iteration attempt fails.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  TypeError: cannot pickle ‘_asyncio.Future’ object Abdul_Rafey 1 409 Mar-07-2024, 03:40 PM
Last Post: deanhystad
  error in class: TypeError: 'str' object is not callable akbarza 2 522 Dec-30-2023, 04:35 PM
Last Post: deanhystad
Bug TypeError: 'NoneType' object is not subscriptable TheLummen 4 758 Nov-27-2023, 11:34 AM
Last Post: TheLummen
  TypeError: 'NoneType' object is not callable akbarza 4 1,015 Aug-24-2023, 05:14 PM
Last Post: snippsat
  [NEW CODER] TypeError: Object is not callable iwantyoursec 5 1,379 Aug-23-2023, 06:21 PM
Last Post: deanhystad
  TypeError: 'float' object is not callable #1 isdito2001 1 1,089 Jan-21-2023, 12:43 AM
Last Post: Yoriz
  TypeError: a bytes-like object is required ZeroX 13 4,178 Jan-07-2023, 07:02 PM
Last Post: deanhystad
  TypeError: 'float' object is not callable TimofeyKolpakov 3 1,467 Dec-04-2022, 04:58 PM
Last Post: TimofeyKolpakov
  API Post issue "TypeError: 'str' object is not callable" makeeley 2 1,934 Oct-30-2022, 12:53 PM
Last Post: makeeley
  TypeError: 'NoneType' object is not subscriptable syafiq14 3 5,270 Sep-19-2022, 02:43 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020