Based on this comment :
it seems to work perfect with patterns like 1000%, 100 but now
problems with decimal values like 101.50 or 199.50%
^[-+]?\d*\.?\d+\b%?$
Explanation :
"
^ # Assert position at the beginning of the string
[-+] # Match a single character present in the list “-+”
? # Between zero and one times, as many times as possible, giving back as needed (greedy)
[0-9] # Match a single character in the range between “0” and “9”
* # Between zero and unlimited times, as many times as possible, giving back as needed (greedy)
\. # Match the character “.” literally
? # Between zero and one times, as many times as possible, giving back as needed (greedy)
[0-9] # Match a single character in the range between “0” and “9”
+ # Between one and unlimited times, as many times as possible, giving back as needed (greedy)
\b # Assert position at a word boundary
% # Match the character “%” literally
? # Between zero and one times, as many times as possible, giving back as needed (greedy)
\$ # Assert position at the end of the string (or before the line break at the end of the string, if any)
"
As a side note : You should really have been able to account for the optional part from @ Tim's answer. Take a look at the tutorial proposed by the other answers.