May 4, 2007 #1 CJason Programmer Joined Oct 13, 2004 Messages 223 Location US I would like to do something to change: $test{hello}{abc} $test{hello}{def} to: $test{goodbye}{abc} $test{goodbye}{def} Any good ideas out there?
I would like to do something to change: $test{hello}{abc} $test{hello}{def} to: $test{goodbye}{abc} $test{goodbye}{def} Any good ideas out there?
May 4, 2007 Thread starter #2 CJason Programmer Joined Oct 13, 2004 Messages 223 Location US I wanted to modify my example a little bit: $test{hello}{abc} $test{hello}{def} $test{stuff}{abc} $test{stuff}{def} to...replacing "hello" with "goodbye": $test{goodbye}{abc} $test{goodbye}{def} $test{stuff}{abc} $test{stuff}{def} Upvote 0 Downvote
I wanted to modify my example a little bit: $test{hello}{abc} $test{hello}{def} $test{stuff}{abc} $test{stuff}{def} to...replacing "hello" with "goodbye": $test{goodbye}{abc} $test{goodbye}{def} $test{stuff}{abc} $test{stuff}{def}
May 4, 2007 #3 MillerH Programmer Joined Oct 20, 2006 Messages 919 Location US Code: $test{goodbye} = delete $test{hello}; - Miller Upvote 0 Downvote