I am attempting to parse an item of text that contains pricing information +/- an adder. The data would look something like this:
Pricing information using service 1 + 0.0075 USD/gal
Pricing information using a different service - 0.015 USD/gal
The information at the beginning can/will be different, but it always ends with plus or minus some number. I have successfully parsed the ones that are subtracting a number using RegEx Parse with Regular Expression: -(.*) However, when I try to do the same exact thing with the plus sign, +(.*) I get the following error. "RegEx: An attempt to repeat something that can not be repeated - for example a*+ at character 0"
I have spent quite a while searching the community to find somebody else who had issues parsing at a + sign but came up short. Can anybody help?
Thanks!
Cailin