Hello,
Have you tried :
[code:1]^(<object)( )+(src="«»)(.*)(</object>«»)$[/code:1] ?
If this don't work, please copy and paste here your new player code, I will write you the matching regexp.
Basically the sign [code:1]^[/code:1] at the beginning means "that must start with what follows"
the sign : [code:1]$[/code:1] means "that must end with what is before
parenthesis are used to make different groups.
[code:1]+[/code:1] means that the previous group must be present at least one time. So, in the previous code [code:1]( )+[/code:1] means "one of several spaces"
[code:1].[/code:1] means "any character"
[code:1]*[/code:1] means "zero or more times"
So, [code:1](.*)[/code:1] means "any character zero or more time"
To sum up the whole string means that the player code must :
1- Start with [code:1]<object[/code:1]
2- have one or more space after object
3- have [code:1]src="[/code:1] after the space(s)
4- must finish by [code:1]</object>[/code:1]
5- can have or not any text between 3 and 4
It's a bit hard to catch that but with training, you find it easy