Laura
12/11/2023, 9:18 PMMike Robbins
12/11/2023, 9:35 PMsubstr({memo}, instr({memo}, 'Name:') + 6)
Mike Robbins
12/11/2023, 9:39 PMsubstr(memo, instr(memo, 'Name:') + 6)
Laura
12/12/2023, 2:45 PMDavid B
12/12/2023, 7:50 PMREGEXP_SUBSTR({memo}, 'Name: (.+)', 1, 1, null, 1)
that final parameter is the capturing group/subexpression, in this case the 1st (and only) capturing group (.*)
David B
12/12/2023, 7:54 PMName: ?(.+)
If "name" might not be capitalized, you can specify case-insensitive matches ('i'
instead of null
)Laura
12/20/2023, 1:54 PM