Extraction Issue with <span> within <p>

I’m trying to extract the <p>, specifically the name, but it doesn’t seem extract anything:

    <div class="col-xs-6">
        <label>Address:</label>
        <p>
             Fname Lname <br>

                <span>
                    Address Line<br>
                    State&nbsp;Zip<br>
                    United States of America
                </span>
        </p>
    </div>

Thanks for any help!

Does using relative extraction solve this issue, too? (As you described in Extract Relative - UI.Vision RPA - UI.Vision RPA Software Forum | Discuss RPA Automation, Selenium IDE and OCR API Text Recognition - xpath can be used with storeText)

Another powerful option would be to use sourceExtract with some regular expression.

I’ve tried Extract Relative, but it did not work either. Yea, I’m going to try see if sourceExtract will help. Any advice for the syntax?