Comment: decimal to decimal: 1.2% to 21.53%
Group dec_to_dec(?<dec_to_dec>
(?:[0-9]{1,3}[\,\.][0-9]{1,3}[\%]\sto\s[0-9]{1,3}[\,\.][0-9]{1,3}[\%])
) Non-Capturing Group(?:[0-9]{1,3}[\,\.][0-9]{1,3}[\%]\sto\s[0-9]{1,3}[\,\.][0-9]{1,3}[\%]) Character Class[0-9]{1,3} {1,3}matches between 1 and 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\,the literal , (4410 / 548 / 2C16)
\.the literal . (4610 / 568 / 2E16)
Character Class[0-9]{1,3} {1,3}matches between 1 and 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\%the literal % (3710 / 458 / 2516)
\sany whitespace character
tothe literal text to (case sensitive) \sany whitespace character
Character Class[0-9]{1,3} {1,3}matches between 1 and 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\,the literal , (4410 / 548 / 2C16)
\.the literal . (4610 / 568 / 2E16)
Character Class[0-9]{1,3} {1,3}matches between 1 and 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\%the literal % (3710 / 458 / 2516)
Comment: Decimal to Whole number: 1.2% to 21%
Group dec_to_int(?<dec_to_int>
(?:[0-9]{1,3}[\,\.][0-9]{1,3}[\%]\sto\s[0-9]{1,3}[\%])
) Non-Capturing Group(?:[0-9]{1,3}[\,\.][0-9]{1,3}[\%]\sto\s[0-9]{1,3}[\%]) Character Class[0-9]{1,3} {1,3}matches between 1 and 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\,the literal , (4410 / 548 / 2C16)
\.the literal . (4610 / 568 / 2E16)
Character Class[0-9]{1,3} {1,3}matches between 1 and 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\%the literal % (3710 / 458 / 2516)
\sany whitespace character
tothe literal text to (case sensitive) \sany whitespace character
Character Class[0-9]{1,3} {1,3}matches between 1 and 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\%the literal % (3710 / 458 / 2516)
Comment: Whole number to Decimal: 1% to 21.53%
Group int_to_dec(?<int_to_dec>
(?:[0-9]{1,3}[\%]\sto\s[0-9]{1,3}[\,\.][0-9]{1,3}[\%])
) Non-Capturing Group(?:[0-9]{1,3}[\%]\sto\s[0-9]{1,3}[\,\.][0-9]{1,3}[\%]) Character Class[0-9]{1,3} {1,3}matches between 1 and 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\%the literal % (3710 / 458 / 2516)
\sany whitespace character
tothe literal text to (case sensitive) \sany whitespace character
Character Class[0-9]{1,3} Character Class[0-9]{1,3} Comment: Whole number to whole number: 1% to 21%
Group int_to_int(?<int_to_int>
(?:[0-9]{1,3}[\%]\sto\s[0-9]{1,3}[\%])
) Comment: Single Whole Number: 21%
Group single_int(?<single_int>
(?:[0-9]{1,3}[\%])
) Comment: Single Whole Number: 21%
Group single_dec(?<single_dec>
(?:[0-9]{1,3}[\,\.][0-9]{1,3}[\%])
)