I have a bunch of files that have the following structure:
LastName,<sp>FirstName<sp>-<sp>NameOfTheBook (LastName followed by a "," and a space, and then the FirstName followed by a space followed by "-" and then a space and then the NameOfTheBook)
I would like to change the structure to the following:
FirstName<sp>LastName<sp>-<sp>NameOfTheBook (FirstName followed by a space and then the LastName. The remaining portion starting with the space end culminating with the NameOfTheBook should rename the same.)
How do I achieve this via Regular Expression?
Thanks
Venkit