programmer1982
Programmer
Hello,
{
Data_list = some data1;
Data_list2 = some data2;
}
END
{
while (read some file) {
Data_list1 = Some data3;
}
for (patchNo in Data_list1) {
----
----
----
if (!(x in Data_list2)) {bCheck = 0; break;}
if (!(patchNo in Data_list)) { bCheck = 0; break;} ----> this line is not able to match patchno in Data_list (*1)
}
}
(*1)
While print the values of array Data_list it is found that some values of patchNo are exists in the Data_list; but in the line if (!(patchNo in Data_list)) this condition is not getting true even once for even the existing values.
Please suggest how to resolve this problem.
Thank You
{
Data_list = some data1;
Data_list2 = some data2;
}
END
{
while (read some file) {
Data_list1 = Some data3;
}
for (patchNo in Data_list1) {
----
----
----
if (!(x in Data_list2)) {bCheck = 0; break;}
if (!(patchNo in Data_list)) { bCheck = 0; break;} ----> this line is not able to match patchno in Data_list (*1)
}
}
(*1)
While print the values of array Data_list it is found that some values of patchNo are exists in the Data_list; but in the line if (!(patchNo in Data_list)) this condition is not getting true even once for even the existing values.
Please suggest how to resolve this problem.
Thank You