Beefy Boxes and Bandwidth Generously Provided by pair Networks Joe
Welcome to the Monastery
 
PerlMonks  

Re: Deleting elements from array questions

by robobunny (Friar)
on Aug 08, 2002 at 14:36 UTC ( [id://188693]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Deleting elements from array questions

the subject of "deleting elements from array questions" comes up pretty often, so i decided to write a subroutine that would handle the job once and for all. note that it will only remove elements from array questions, not array statements or other types of questions.
$ques = "how do i make an array spin around?"; $element = 4; print delete_element($element, $ques), "\n"; sub delete_element { my ($element, $question) = @_; if($question =~ /array.*\?$/i) { @elements = split(' ', $question); $elements[$element] = ''; return join(' ', @elements); } else { print "That is not an array question!\n"; return $question; } } output: how do i make array spin around?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://188693]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.