Page 1 of 1

Delete a Whitespace?

PostPosted: Sat Dec 23, 2017 4:30 am
by brandonluciano824
I have several files in the following format.

Showname S01E01 Title .mkv
Showname S01E02 Title .mkv

I would like to delete the whitespace between 'Title' and the extension mkv. The files all have a different Title.

Basically what output to be

Showname S01E01 Title.mkv instead of Showname S01E01 Title .mkv

Tried to do it but no luck. Probably a simple fix.

Re: Delete a Whitespace?

PostPosted: Sat Dec 23, 2017 4:32 am
by brandonluciano824
Not sure how to delete but I literally just figured it out seconds after I made this post.

For others, I insert a random placeholder text such as temp and inserted a backspace before the text allowing to delete the backspace.

Re: Delete a Whitespace?

PostPosted: Sat Dec 23, 2017 3:32 pm
by therube
Just to point out...

5:Remove -> Trim [box]
Code: Select all
ยท Trim - Remove leading and trailing spaces.


So:
Code: Select all
"   this is just a test    .mp4"
becomes
"this is just a test.mp4"