I want Regex to start at the first word/number that isn't blank. In my example below, I want to start at LG
. There are lots of other lines of a near identical structure I will also have to match through.
<div class="p13n-sc-truncate p13n-sc-truncated-hyphen p13n-sc-line-clamp-2" aria-hidden="true" data-rows="2" data-truncate-mix-weblab='true'>
LG 32MA68HY-P 32-Inch IPS Monitor with Display Port and HDMI Inputs
My Regex is.. (?<='True'>\n).*.(?=\n)
Rather than adding a lot of dots is there a way to start at the first letter/number/word for this line?
I believe [^\s]
should work but I can't get it working..