hi,
how can i concatenate the part of the first and the next line, leaving the 'DE' in the beginning if i have the following in a text file?
DE Chloride intracellular channel protein 5 (Chlorine channel protein
DE p64).
i want it like this:
Chloride intracellular channel protein 5 (Chlorine channel protein p64).
the following doesn't work.
thank you.
how can i concatenate the part of the first and the next line, leaving the 'DE' in the beginning if i have the following in a text file?
DE Chloride intracellular channel protein 5 (Chlorine channel protein
DE p64).
i want it like this:
Chloride intracellular channel protein 5 (Chlorine channel protein p64).
the following doesn't work.
Code:
if (preg_match("/DE\s+(.+)/", $buffer, $desc)) { $description .= $desc[1]; }
Comment