Hi All,
I would appreciate some help with using a RegEx or suitable tool to do this. Essentially extract all digits before and after text
Thanks
Hey @EJ_Alt,
Here is one way to do this with Regex
([\d\.]+)(\D+)([\d\.]+)
The first and third group captures one or more number characters or points '.':
([\d\.]+)
The second group captures any non number characters:
(\D+)
If you want to learn more about Regex the community has some really quick interactive videos on getting to grips with it here https://community.alteryx.com/t5/Interactive-Lessons/tkb-p/interactive-lessons/label-name/Parsing%20Data
Any questions or issues please askIra WattTechnical ConsultantWatt@Bulien.com
@EJ_Alt Another way of doing this
@EJ_Alt
I used following expression to parse. Hope this helps you.
Thanks!
Thanks! works too.