#include <StringConstants.au3> ; to declare the Constants of StringRegExp
#include <Array.au3> ; UDF needed for _ArrayDisplay and _ArrayConcatenate
Local $sRegex = "(?si)^(?:\D+)?(?:(?:[4-7](?:(?:\.|\,)[1-9])?)|(?:[5-8](?:(?:\.|\,)0)?))(?:(?:\s?gb)|\s?giga|\sgigabyte)?(?:.*)"
Local $sString = "4.5 polegadas (~ 64,3% relação tela-corpo)" & @CRLF & _
"" & @CRLF & _
"5,5 polegadas super amoled full hd, 1080p 401 ppi corning® gorilla® glass 3" & @CRLF & _
"" & @CRLF & _
"5,5 polegadas super amoled full hd, 1080p 401 ppi corning® gorilla® glass 3" & @CRLF & _
"" & @CRLF & _
"5"-6" polegadas super amoled full hd, 1080p 401 ppi corning® gorilla® glass 3" & @CRLF & _
"" & @CRLF & _
"^(?:(6(?:\.|\,)0)|(5(?:\.|\,)[1-9]))(.*)" & @CRLF & _
"\s?(?:(?:\d+)(?:\.|\,)?(?:\d+)?)(?:"|''|\x60|'|´|”)" & @CRLF & _
"" & @CRLF & _
"(?:(5(?:\.|\,)0)|(4(?:\.|\,)[1-9]))(.*)" & @CRLF & _
"" & @CRLF & _
"(4(?:\.|\,)[1-9])(.*) => 4-5" & @CRLF & _
"(5(?:\.|\,)[0]))(.*) => 4-5"
Local $aArray = StringRegExp($sString, $sRegex, $STR_REGEXPARRAYFULLMATCH)
; Present the entire match result
_ArrayDisplay($aArray, "Result")
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for AutoIt, please visit: https://www.autoitscript.com/autoit3/docs/functions/StringRegExp.htm