Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^2: utf weirdness in regex

by december (Pilgrim)
on Jul 24, 2004 at 04:28 UTC ( #377075=note: print w/replies, xml ) Need Help??


in reply to Re: utf weirdness in regex
in thread utf weirdness in regex

No, it's only any_letter and spaces (I hope). It's supposed to check that a filename only consists of letters (as opposed to control characters, which I'm filtering for).

The trailing period is supposed to be there for the dot in the filename.

Unicode makes things *hard*. :)

Replies are listed 'Best First'.
Re^3: utf weirdness in regex
by hbo (Monk) on Jul 24, 2004 at 05:52 UTC
    But the period matches any character if it isn't escaped.
    /[\w\s\.]+/ # one or more word, space or period characters /[\w\s.]+/ # one or more word. space or *any* characters /.+/ # same as above
    "Even if you are on the right track, you'll get run over if you just sit there." - Will Rogers

      Note that inside a character class, a period is not special: it means just period. So this:

      /[\w\s.]+/
      would match one or more of (word chars, space chars, periods) in any combination.

      In other words, your first two examples are equivalent, not your second two.

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others imbibing at the Monastery: (5)
As of 2023-03-30 17:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (74 votes). Check out past polls.

    Notices?