You'll need to use 'Sort using pattern' since you're sorting on
text that's in the middle of the lines. Just to be clear
'pattern' means a grep pattern (regular expression). Capture the
text that matches your percentage to a subpattern using
parentheses in the pattern, then sort using that subpattern.
Since you're sorting numbers, you'll also need to check the
'Numbers match by value' option to sort the lines numerically.
For the example you gave, and assuming that the percentages may
or may not have a decimal part, this pattern works:
(\d+\.?\d*)\%
and sort using either all patterns (there's only one subpatter
defined) or the specific subpattern \1.
--
Christopher Bort
<top...@thehundredacre.net>