Problems with Anchors

Get help with installation and running here.

Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators

Post Reply
randersoniii
Posts: 4
Joined: Thu May 12, 2005 5:34 am

Problems with Anchors

Post by randersoniii »

I am trying to write a perl pattern where the entire line matches. So, for the text "This is a test", I have tried "^This is a test$". While this seems to work in other programs (RegexBuddy), I get no matches if I type the following into the trial input:
This is a Test
This is a Test 2
This is a Test

I know this should be simple, but it's not clear what I am doing wrong. I have also tried an easypattern with similar results.
User avatar
DataMystic Support
Site Admin
Posts: 2227
Joined: Mon Jun 30, 2003 12:32 pm
Location: Melbourne, Australia
Contact:

Post by DataMystic Support »

$ doesn't work as expected because the library we use expects Unix end of lines.

Try

"^This is a test[\r\n]

Instead.
randersoniii
Posts: 4
Joined: Thu May 12, 2005 5:34 am

Post by randersoniii »

OK, thanks...

This is one you should fix or write up in help. I lost a couple of hours assuming it was something I didn't understand.
User avatar
DataMystic Support
Site Admin
Posts: 2227
Joined: Mon Jun 30, 2003 12:32 pm
Location: Melbourne, Australia
Contact:

Post by DataMystic Support »

I think it is documented, but I will check.
Post Reply