![]() |
How to print from all line in between two pattern - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: How to print from all line in between two pattern (/thread-15936.html) |
How to print from all line in between two pattern - kttan - Feb-07-2019 Sorry im totally new in python, if can have some explanation on code, and try split in few function, so i can more easily learn and apply at other place. i'm try search net but unable to find this function, most of them can't extract exactly same , and can't extract out the line with ;. Im have 2 file , file_A and file_B. Have few condition. 1. Need exactly same only will extract out. exp(will only extract "+5VIN" pattern only , and "+5VIN_2" won't.) 2. extract all until found ";", include the line. 3. the output file will ignore "." 4. will remove duplicate. file_A # +5VIN 2FS_ECL0 # file_B # +5VIN TP94.1 R1.2 U43.30; +5VIN_2 TP95.1 U43.32; 2FS_ECL0 TP94.2 R100.1; # expected output file: # TP94 R1 U43 R100 # RE: How to print from all line in between two pattern - Larz60+ - Feb-07-2019 show what you have tried so far, and where the problem lies. RE: How to print from all line in between two pattern - kttan - Feb-07-2019 (Feb-07-2019, 04:06 AM)Larz60+ Wrote: show what you have tried so far, and where the problem lies. below is the code im try, but it unable to work, and it only hardcode , unable to get string from the other list.
RE: How to print from all line in between two pattern - kttan - Feb-07-2019 (Feb-07-2019, 04:06 AM)Larz60+ Wrote: show what you have tried so far, and where the problem lies. i'm have try below code: def Extract_part1(): for Beginning in search_words: infile = open("File_B","r") outfile = open("Output_file","w") print_swt = 0 with infile as f: for line in f: if Beginning in line: print_swt = 1 if ";" in line: print_swt = 0 if print_swt: X = line outfile.write(str(X)) print(print_swt) infile.close() outfile.close() rmv_list = open("file_A") search_words = [] for word in rmv_list: search_words.append(word.strip()) rmv_list.close()the output file i get is(highlight in red only:+
RE: How to print from all line in between two pattern - Larz60+ - Feb-07-2019 I don't see where 'Extract_part1()' is being executed, please post runable code. RE: How to print from all line in between two pattern - kttan - Feb-08-2019 (Feb-07-2019, 10:55 AM)Larz60+ Wrote: I don't see where 'Extract_part1()' is being executed, please post runable code. i'm not a professional programmer , i'm just start learning to do some simple text processing job, hope some one can help on this, i'm try to search the part for few day but unable to find. it run after rmv_list.close() rmv_list = open("file_A") search_words = [] for word in rmv_list: search_words.append(word.strip()) rmv_list.close() Extract_part1() (Feb-07-2019, 10:55 AM)Larz60+ Wrote: I don't see where 'Extract_part1()' is being executed, please post runable code. it run after rmv_list.close() def Extract_part1(): for Beginning in search_words: infile = open("File_B","r") outfile = open("Output_file","w") print_swt = 0 with infile as f: for line in f: if Beginning in line: print_swt = 1 if ";" in line: print_swt = 0 if print_swt: X = line outfile.write(str(X)) print(print_swt) infile.close() outfile.close() rmv_list = open("file_A") search_words = [] for word in rmv_list: search_words.append(word.strip()) rmv_list.close() Extract_part1() RE: How to print from all line in between two pattern - kttan - Feb-08-2019 Hi All, Im Need help, im been trying . below is my code, still have some error, which is it only extract 1st data only. def Extract_part1(): outfile = open("Board_filter3","w") infile = open("Board_filter2","r") for line in infile: for Beginning in search_words: print_swt = 0 for line in infile: if Beginning == line.strip(): print(Beginning,print_swt) print_swt = 1 continue if print_swt == 1: X = line outfile.write(X) if ";" in line: print_swt = 0 infile.close() outfile.close() rmv_list = open(rmv_list_input) search_words = [] for word in rmv_list: search_words.append(word.strip()) rmv_list.close() Extract_part1() RE: How to print from all line in between two pattern - perfringo - Feb-08-2019 (Feb-07-2019, 03:18 AM)kttan Wrote: Have few condition. (Feb-08-2019, 09:31 AM)kttan Wrote: Im Need help, im been trying . below is my code, still have some error, which is it only extract 1st data only. Sorry, but these conditions don't make sense to me. If you cant articulate what are the exact conditions then it's near to impossible to help. RE: How to print from all line in between two pattern - Larz60+ - Feb-08-2019 Anda perlu menerangkan menggunakan Bahasa Melayu, kemudian pergi ke translate.google.com dan menterjemah ke bahasa inggeris sebelum posting. Dengan cara ini, anda akan dapat menyatakan dengan jelas persoalan anda. |