I have a string in xml file "This is a subpara (10.1), subpara (1)"
I want to know the regex expression which find the word "subpara" followed by a "space" followed by a "(" and one or more "digits" and optionally followed by a "." and one or more digits followed by ")".
I tried using the following but not getting the desire result:
<xsl:analyze-string select="." regex="subpara [\(\d+(\.\d+)?\)]+">