Re: removing an arbitrary element from array

2009-01-28 Thread Sharan Basappa
Thank you ... -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: removing an arbitrary element from array

2009-01-28 Thread Rob Dixon
Sharan Basappa wrote: > On Sun, Dec 7, 2008 at 2:01 AM, Rob Dixon wrote: >> >> I'm hoping you've made a mistake, because if I understand you correctly then >> out >> of ('a_b_c_1', 'a_b_c_2') the first should be removed because 1 is less than >> two. >> >> If I'm right then the program below sho

Re: removing an arbitrary element from array

2009-01-28 Thread Sharan Basappa
On Sun, Dec 7, 2008 at 2:01 AM, Rob Dixon wrote: > Sharan Basappa wrote: >> >> I was wondering if there is a quick way to remove an arbitrary element >> from an array. >> I have an array which stores _ delimited strings a_b_c_1). The last >> string stores the rank of the string. >> I have to remov

Re: removing an arbitrary element from array

2008-12-10 Thread Sharan Basappa
On Sun, Dec 7, 2008 at 2:01 AM, Rob Dixon <[EMAIL PROTECTED]> wrote: > Sharan Basappa wrote: >> >> I was wondering if there is a quick way to remove an arbitrary element >> from an array. >> I have an array which stores _ delimited strings a_b_c_1). The last >> string stores the rank of the string.

Re: removing an arbitrary element from array

2008-12-06 Thread Rob Dixon
Sharan Basappa wrote: > > I was wondering if there is a quick way to remove an arbitrary element > from an array. > I have an array which stores _ delimited strings a_b_c_1). The last > string stores the rank of the string. > I have to remove a string from array that has the lowest number. > > e.

Re: removing an arbitrary element from array

2008-12-05 Thread Terry Grant
Sharan Basappa wrote: Hi, I was wondering if there is a quick way to remove an arbitrary element from an array. I have an array which stores _ delimited strings a_b_c_1). The last string stores the rank of the string. I have to remove a string from array that has the lowest number. e.g. a_b_c_1

removing an arbitrary element from array

2008-12-05 Thread Sharan Basappa
Hi, I was wondering if there is a quick way to remove an arbitrary element from an array. I have an array which stores _ delimited strings a_b_c_1). The last string stores the rank of the string. I have to remove a string from array that has the lowest number. e.g. a_b_c_1, a_b_c_2. In this case,