View Single Post
Old 11-22-2003, 08:30 AM   #3 (permalink)
ratbastid
Darth Papa
 
ratbastid's Avatar
 
Location: Yonder
Regular Expressions part II

So our example from the last lesson wasn't all that interesting. How hard is it to find a static string in another static string? Booooring!

I'm going to introduce now a syntax that I'll use to demonstrate regular expressions, which look like this:

Code:
my @teststrings = ('string1', 'string2');
foreach my $string (@teststrings) {
  if ($string =~ /regex/) {
    print "$string matched!\n";
  } else {  # optional else clause
    print "$string didn't match!\n";
  }
}
I'll embed in there comments about which we'd expect to match, given the values of string1, string2, and regex.

Oooookay! So what if you have a list of names, and you want to find everyone in that list with your same first name. Just for fun, we'll say your name is Stu.

Your list looks like this:

Dave White
Adrian Wapcaplet
Stu Peterson
Sally Smith
Michael Jones
Stu Watkins
Micheline Mann
Stu Pott

Here's the code I'd write to pick out the "Stu"s:

Code:
my @names = ('Dave White','Adrian Wapcaplet','Stu Peterson',
  'Sally Smith','Michael Jones','Stu Watkins','Micheline Mann','Stu Pott');

foreach my $name (@names) {
  if ($name =~ /Stu .*/) {
    print "$name matched!\n";
  }
}
The output we'd expect from this is:<pre>Stu Peterson matched!
Stu Watkins matched!
Stu Pott matched!</pre>
So let's look closer at the regex I wrote there. What I said was "/Stu .*/". There are two special characters in here. The dot (spelled ".") means "any character". (Strictly speaking, it means "any character except a newline, unless the regex is modified with /s", but for now let's ignore that.)

So . means "any character". And * means "zero or more of the preceding thing". So together they're "zero or more of any character". So all strung together, this regular expression says, in the given string, match the literal characters S, t, u, and a space, followed by zero or more of any character. Hence the Stus show up as matched.

Now... What if I want to make sure I only get Stu's with last names. ANYTHING that begins "Stu " (notice the space) will be matched by that string, even if there's nothing following that. We'd match zero characters at the end of "Stu ", and the regex would be perfectly happy with that.

So fine, instead of "*" (zero or more), we want to use "+", meaning ONE or more. The string "Stu " is NOT matched by the regular expresssion /Stu .+/. That'll match Stu Meatt and Stu Pidd, but it won't match Stuart Little or plain old Stu.

Be sure you're clear on the above before reading further in this lesson.

Okay, next thing. Let's say we want to grab the last names off of there? So we've got those in a variable to use all by themselves? Maybe later we'll want to alphebatize the Stus by last name or something. Here's how we do that.

Surround any portion of a regular expression with (parentheses), and you'll capture its matched value in a magic variable called $1. The second set of parens will be stored in $2, the third in $3, etc.

So this code:
Code:
my @names = ('Dave White','Adrian Wapcaplet','Stu Peterson',
&nbsp;&nbsp;'Sally Smith','Michael Jones','Stu Watkins','Micheline Mann','Stu Pott');

foreach my $name (@names) {
&nbsp;&nbsp;if ($name =~ /Stu (.+)/) {
&nbsp;&nbsp;&nbsp;&nbsp;print "$name has the last name $1!\n";
&nbsp;&nbsp;}
}
will print out:<pre>Stu Peterson has the last name Peterson!
Stu Watkins has the last name Watkins!
Stu Pott has the last name Pott!</pre>

Just be sure to assign $1 into another variable or push it onto an array or something--the next regular expression will overwrite it.

We covered a lot of ground so far, so I'm going to leave some time for questions before my next tutorial. Fire away, people!

Last edited by ratbastid; 11-22-2003 at 08:35 AM..
ratbastid is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360