Need more help scraping source code

Hi, I am looking to scrape the 10 digit SKU after the "supplierskus" and was wondering if I could get some help

Url: https://www.champssports.com/search?query=nike%20shoes%20mens%3Arelevance%3AstyleDiscountPercent%3ASALE

Sitemap:
{"_id":"devchamp","startUrl":["https://www.champssports.com/search?query=nike%20shoes%20mens%3Arelevance%3AstyleDiscountPercent%3ASALE"],"selectors":[{"id":"links","multiple":true,"parentSelectors":["_root"],"selector":"ul:nth-of-type(1) .hasVariants a.ProductCard-link","type":"SelectorLink"},{"clickElementSelector":"li.Pagination-option--digit:nth-of-type(n+3) a","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":2000,"discardInitialElements":"discard-when-click-element-exists","id":"pagination","multiple":true,"parentSelectors":["_root","pagination"],"selector":"html","type":"SelectorElementClick"},{"id":"sku","multiple":false,"parentSelectors":["links"],"regex":"","selector":"script[type="text/javascript"]:contains("supplier")","type":"SelectorText"},{"id":"Price","multiple":false,"parentSelectors":["links"],"regex":"","selector":".ProductDetails-form__price span.ProductPrice-final","type":"SelectorText"},{"id":"html","multiple":false,"parentSelectors":["links"],"regex":"","selector":"script:contains("vendorattributes")","type":"SelectorText"}]}

@Quins Hello, it appears that this SKU is located within the page source and can be extracted by using the following 'Text' selector: script:contains("supplierSkus"), however additional data post-processing will be required in order to isolate this data.

Learn more: Parser | Web Scraper Documentation

{"_id":"devchamp","startUrl":["https://www.champssports.com/product/nike-air-max-97-mens/H1085001.html"],"selectors":[{"id":"test","multiple":false,"parentSelectors":["_root"],"regex":"supplierSkus.*","selector":"script:contains(\"supplierSkus\")","type":"SelectorText"}]}

The SKU is located within the head tag but there may be more than one SKU if there are product variations. It can be obtained with a combination of selector: HTML and regex. This one only gets the first SKU:

{"_id":"champssports2","startUrl":["https://www.champssports.com/product/nike-air-max-97-mens/H1085001.html"],"selectors":[{"id":"Title","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"span.ProductName-primary","type":"SelectorText"},{"id":"first sku","multiple":false,"parentSelectors":["_root"],"regex":"(?<=\"sku\": \")[^\"]+","selector":"head","type":"SelectorHTML"}]}