A, An and The exclusion

Have this to remove a, an or the but want to keep them if not the first word of the string,

Like in "2 The Hard Way" I would want to keep "The" in place in this instance

or

Like in "Maybe A Dingo Ate Your Baby" I would want to keep "A" in place in this instance

What would I add to this expression to keep a, an or the when not the first word?

This was just recently answered for you here.

I only want to take out A, An or The if they are the FIRST word of the string, Other wise I want to keep them in.

Try
$regexp(%title%,^(A |An |The ),)

Your regular expression has only two small errors:
$regexp(%title%,^A |An |The |,)
should be - as @ohrenkino says:
$regexp(%title%,^(A |An |The ),)
which means:

The pipe symbol | gives you a selection:
A or An or The (all three followed by a space)
The pipe symbol should not be the last character.
The brackets around this selection represent the caption group, which will be replaced if one of the 3 possibilities starts ^ as the first character(s) of the line.
The matched possibility will be replaced with nothing (nothing is given after the comma).

Thank You for explaining It. Trying to learn off other peoples posts is hard a lot of the time. The end results of what it should look like are not provided. I am one of those people that has to see it to understand it, especially if I am unfamiliar with the context of what is happening.

You can test scripting functions including $regexp() in Convert>Tag-Tag.