Hi!,
I have a sorted 1D array of strings(say initial array) and I have
three lookup array of string(say array A, array B and array C). I want
to search the initial array with array A, array B and array C and then
create a new array Final which will contain the elements of array A,
if any, its start index and its last index and then element sof
arrayB, if any found, its start index and its end index and then
element of array C its start index and its end index.
The start index and end index are stored in different indicatrs for
all the three found.
How do I search elements of 1D array with another 1D array?
TIA,
RK