B
bcparanj
I have a text with "foo 01-02" in a string. I want to extract foo
01-02 using regexp. reg = /foo (\d+)/ only extracts foo with numbers
when there is no hyphen.
reg = /foo (\d{1,})|(\-)|(\d{1,})/ only extracts foo 01. TIA.
01-02 using regexp. reg = /foo (\d+)/ only extracts foo with numbers
when there is no hyphen.
reg = /foo (\d{1,})|(\-)|(\d{1,})/ only extracts foo 01. TIA.