Posts: 6
Threads: 2
Joined: Dec 2018
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
#
Posts: 12,022
Threads: 484
Joined: Sep 2016
show what you have tried so far, and where the problem lies.
Posts: 6
Threads: 2
Joined: Dec 2018
(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.
Board_file = open("board","r")
Board_connection = open("Board_filter1","w")
def Board_File_filter1():
Beginning = "+5VIN"
Ending = ";"
print_swt = 0
with Board_file as f:
for line in f:
if Beginning in line:
print_swt = 1
if Ending in line:
print_swt = 0
if print_swt:
X = line
Board_connection.write(str(X))
Posts: 6
Threads: 2
Joined: Dec 2018
Feb-07-2019, 09:35 AM
(This post was last modified: Feb-07-2019, 10:51 AM by Larz60+.)
(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:+
Output: +5VIN
TP94.1
R1.2
U43.30;
2FS_ECL0
TP94.2
R100.1;
Posts: 12,022
Threads: 484
Joined: Sep 2016
I don't see where 'Extract_part1()' is being executed, please post runable code.
Posts: 6
Threads: 2
Joined: Dec 2018
Feb-08-2019, 12:39 AM
(This post was last modified: Feb-08-2019, 12:46 AM by kttan.)
(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()
Posts: 6
Threads: 2
Joined: Dec 2018
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()
Posts: 1,950
Threads: 8
Joined: Jun 2018
(Feb-07-2019, 03:18 AM)kttan Wrote: 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.
(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.
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy
Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Posts: 12,022
Threads: 484
Joined: Sep 2016
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.
|