excel - How to extract parsed data from once cell to another -
given spreadsheet cell containing string consists of hyphenated series of character segments, need extract last segment.
for example, consider column containing data strings xx-xxx-x-xx-xx-g10
, x
denotes character. formula need place in column b g10
result?
b 1 xx-xxx-x-xx-xx-g10 g10
i'm looking formula work in in libre office calc, open office calc, ms excel, or google sheets.
another possibility in lo calc use general purpose regular expression macro shown here: https://superuser.com/a/1072196/541756. cell formula similar jpv's answer:
=refind(a1,"([^-]+$)")
Comments
Post a Comment