If I'm understanding your problem correctly you have captions that now look like this:
4This is a caption
4This is also a caption
You can use a regular expression Find and Replace to get rid of the digit 4 at the start of the caption. I've tried to attach a screenshot of how to set up the Find and Replace window, hopefully it is visible. You need to search for:
^4(.*)
which means find a digit 4 at the start of the line followed by 1 or more characters, then in the Replace box put
\1
which is a back reference to whatever is in the parenthesis of the Find string.
Set the serach criteria to Metadata, check the Grep box and restrict the search to the caption field.
I've tested it here and it sems to work OK, but please try it out on a couple of images before applying it to 1000 of them, and/or make sure you have backups!
Edited to add: The screenshot isn't very clear on what to put in the Find box as the cursor was in the way when I took it. The text needed is shown above.