Extracting a portion of a text in a pdf file

Hi

Take a look here:

All you need is an Assign activity:

Assign Left:
str_Result

Assign Right:
system.Text.RegularExpressions.Regex.Match(yourStr, “INSERTxREGEXxPATTERN”).ToString

Take a look at this sample regex pattern

image

You can learn more about regex here:

Hopefully this helps

Cheers

Steve