Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Tk text widget indices.

by meredith (Friar)
on Jul 16, 2003 at 13:41 UTC ( [id://274813]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    m|\*\*(\w+)\b|g
  2. or download this
    while($text =~ m|\*\*(\w+)\b|g) {
        print "Found: " , $1 , "\n";
    }
    
  3. or download this
    m|
     \*     #literal asterisk
    ...
     )      #end capture
     \b     #word boundary
    |gx     #/x allows whitespace, /g makes it global (restart from last m
    +atch position in this case)
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://274813]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (5)
As of 2024-04-25 10:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found