Hi I have the following string:
t = '<td align="right" class="ofGridLinesTop" headers="amount" sortvalue="2633.33" valign="top">\n\t\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t\t\t$2,633.33\n\t\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t\t</td>'
I know that the following Regex sequence properly identifies the part of the string I want (sortvalue="2633.33")
\bsortvalue=.\b\d+.\d+.
Yet when I use the following statement:
Amt = re.findall('\bsortvalue=.\b\d+.\d+.',t)
I come up empty. Any idea why?