Hi,
Looked throught the forum here and it seems the use of $ in rex is confusing.
I have some text:
...
Language: English
LargeImage: grants-content-image-campbeltown.jpg
Author: George Bowie
CreationDate: 2003-09-11 14:57:53
...
all in the same var.
what i want to do is extract the Author: value (the line minus the "Author:" bit)
if i use ">>Author: \P=.+" , I get
George Bowie
CreationDate: 2003-09-11 14:57:53
...
(side question...if i use rex on the command line with the same expression i get
Author: George Bowie
CreationDate: 2003-09-11 14:57:53
....
why is that?)
Anyway, if i use ">>Author: \P=.+$" or ">>Author: \P=.+\F$" it doesn't work.
What is the correct syntax for getting everything up to the end of the line?
Looked throught the forum here and it seems the use of $ in rex is confusing.
I have some text:
...
Language: English
LargeImage: grants-content-image-campbeltown.jpg
Author: George Bowie
CreationDate: 2003-09-11 14:57:53
...
all in the same var.
what i want to do is extract the Author: value (the line minus the "Author:" bit)
if i use ">>Author: \P=.+" , I get
George Bowie
CreationDate: 2003-09-11 14:57:53
...
(side question...if i use rex on the command line with the same expression i get
Author: George Bowie
CreationDate: 2003-09-11 14:57:53
....
why is that?)
Anyway, if i use ">>Author: \P=.+$" or ">>Author: \P=.+\F$" it doesn't work.
What is the correct syntax for getting everything up to the end of the line?