I'm usually pretty good at this, but I cannot seem to extract the last field from a string that has tab-delimited fields. I can get each field except the last one.
OK, I think I have it working.
I used .*?(\t|$)
as the regex.
I'd probably do it this way:
[^\t]+(?:\t|$)
1 Like
Yep, that works and is probably better. Thank you.
1 Like