<aside> 🗄️ Tip! Create spaces after each "R, G, B" NOT "R,G,B"

</aside>

RegEx Example w/ RGB Converter

How To Copy Formulas

Tips With RegEx (Separating 3 Values In One Cell)

Remove

Remove First Number

replace(prop("RGB"), "[^,]*, ", "")

Remove Middle Number

replace(prop("RGB"), ",[^,]*", "")

Remove Last Number

replace(prop("RGB"), ",[^,]*$", "")

Isolate

Isolate First Number

replaceAll(replace(prop("RGB"), "(?:[^,]*, ){0}", ""), ",.*", "")

Isolate Second Number

replaceAll(replace(prop("RGB"), "(?:[^,]*, ){1}", ""), ",.*", "")