in reply to Re: Merging Two Strings
in thread Merging Two Strings
But if it comes like this:$s1 = 'ATGGTAC'; $s2 = 'CCGTAATG'; $result12 = merged_function($s1,$2); # Should return: "ATGGTACCGTAATG'
$s1 = 'CCGTAATG'; $s2 = 'ATGGTAC'; $result12 = merged_function($s1,$2); # Should return: "CCGTAATGGTAC'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Merging Two Strings
by graff (Chancellor) on Oct 27, 2005 at 07:21 UTC |