Just want to convert from string containing fractional numbers (e.g.,
4 1/2
2 7/8
...
to decimal doubles
4.5
2.875
...
Anyway to not use multiple transformers for this? ( I know I can separate the fraction from the whole number, then value map the fractional segment to decimal segments, and then patch the number back together via concatenation...). However, I thought I'd check to see if I'm missing something less bulky.
Many thanks,
Pete