Replacing the first word of a string

Replacing the first word of a string

Hi,

I have a link which has the anchor text as "See 1 more time", ie.
<a href="/play" class="mylink">See 1 more time</a>


Is there a way in Jquery of changing this to "Play 1 more time" - I change the first word "See" to "Play".

I need it to update on all links with the class "mylink", ie:

<a href="/play" class="mylink">See 1 more time</a>
<a href="/play2" class="mylink">See 2 more times</a>
<a href="/play3" class="mylink">See 3 more times</a>


Any help would be much appreciated!