i'm pretty unconfident with regex and i need to do this simple work: i have an input string like this:
<a id="randomid">some text ( +1 even more text)</a>
now i need to replace that "1", i know it will always be between ( + and a space, how can i do this with regex?
That string is generated by ASP.NET inside a asp:HyperLink component, my first try was to generate that number inside a <span> with know id, but looks like asp.net remove all my html tags inside a ASP component