I want to combine these regex's so I can have the right result, my point is the regex should use ( or ) so if the number was "(45.29 SAR ) or ( 4,523.88 SAR)"
here is the two regex that i've used :
\b\d+\.\d+\p{Zs}+SAR\b
\b\d+\,\d+\.\d+\p{Zs}+SAR\b
Thank you.