🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

"REGEX: Search two fields in WV's

User: "mdc"
New Altair Community Member
Updated by Jocelyn
My text input format like this:

-------------
TITLE="xxxxxx"
...
...
ABSTRACT="yyyyyy"
...
...
---------------

To query the TITLE, I use this: TITLE="(.*)" $1

My problem now is I want to extract both the TITLE and the ABSTRACT. What is the expression for this?

thanks,
Matthew

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "IngoRM"
    New Altair Community Member
    Hi,

    not sure if I got this right but anyway. I assume that the text is stored in a single attribute. Then just perform an AttributeCopy and use the Replace operator twice with different capturing groups. Or you replace it within a replace operation and two capturing groups $1 and $2 followed by the new split operator.

    Cheers,
    Ingo