XSLT - Verificando uma substring

Eu tenho duas variáveis XSLT, conforme indicado abaixo:

<xsl:variable name="staticBaseUrl" select="'https://www.hello.com/htapi/PrintApp.asmx/getGames?contentId=id_sudoku&uniqueId="123456"&pageformat=a4'" /> 

<xsl:variable name="dynamicUrl" select="'https://www.hello.com/htapi/PrintApp.asmx/getGames'" /> 

Como verificar se a segunda string (dynamicUrl) é uma substring da primeira string (staticBaseUrl) ou nã

questionAnswers(1)

yourAnswerToTheQuestion