Hi all, i need to extract "Names" from a Textfile
which i liked to solve via Regx, but i fail to generate the correct pattern for that. Can somebody please help me out ?
i need to extract after the second Number until the end of Line
˜16524:˜ 1 §š£™££LÁ-SÔÙÌE£™£š£¥
˜11241:˜ 159 —.M˜A›CX.
to
§š£™££LÁ-SÔÙÌE£™£š£¥
—.M˜A›CX.
but my current output is
♣:˜ 1 ▼§š£™££♣LÁ-SÔÙÌE£™£š£▼¥
♣:˜ 159 —.M˜A›CX♣.
A sample file with 21 Lines is attached and my current code looks like :
which i liked to solve via Regx, but i fail to generate the correct pattern for that. Can somebody please help me out ?
i need to extract after the second Number until the end of Line
˜16524:˜ 1 §š£™££LÁ-SÔÙÌE£™£š£¥
˜11241:˜ 159 —.M˜A›CX.
to
§š£™££LÁ-SÔÙÌE£™£š£¥
—.M˜A›CX.
but my current output is
♣:˜ 1 ▼§š£™££♣LÁ-SÔÙÌE£™£š£▼¥
♣:˜ 159 —.M˜A›CX♣.
A sample file with 21 Lines is attached and my current code looks like :
import re def parse_username(content): print(f"Content after seconds: {content.strip()}") def process_file(file_path, encoding='utf-8'): pattern = re.compile(r'\d+(.*)') try: with open(file_path, 'r', encoding=encoding) as file: for line in file: match = pattern.search(line) if match: content_after_number = match.group(1) parse_username(content_after_number) except UnicodeDecodeError as e: print(f"Error decoding file: {e}") except FileNotFoundError: print(f"File not found: {file_path}") except Exception as e: print(f"An unexpected error occurred: {e}") process_file('names.txt')Thanks in Advance
Attached Files