Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

lets say i have this variable

var image = "image.jpg";

I'm trying to split the content of the variable image and insert _thumbs into it to get something like image_thumbs.jpg.

How do i go about this? Many Thanks.

share|improve this question

4 Answers

function addSuffix(filename, suffix)
{
    var pos = filename.lastIndexOf(".");
    var left = filename.substring(0, pos);
    var right = filename.substring(pos);
    var result = left + suffix + right;
    return result;
}

var image = "image.jpg";
var imageWithSuffix = addSuffix(image, "_thumbs");
// imageWithSuffix === "image_thumbs.jpg"

Or, just for fun, a much less readable but shorter solution using a regex:

function addSuffix2(filename, suffix)
{
    return filename.replace(/\.[^\.]+$/, suffix + "$&"); 
}
share|improve this answer
nice solution. lastIndexOf is the way to go. – bozdoz Oct 19 '11 at 3:06
i prefer the regex way. – bitsMix Oct 19 '11 at 4:09
var image = "image.jpg";
image = image.replace(".","_thumbs.");
share|improve this answer
Absolutely brilliant and simple. Worked like a charm, thank you very much. – user951042 Oct 19 '11 at 2:54
Won't work if there is dot in the filename (before the extension). – Y. Shoham Oct 19 '11 at 2:54
Actually it would work twice as well. ;) – bozdoz Oct 19 '11 at 3:05

Here is the solution

Way 1

var image = "image.jpg";
var splitVar = image.split(".");
alert(splitVar[0]);
alert(splitVar[1]);
alert(splitVar[0]+"_thumbs."+splitVar[1]);

Way 2

alert(image.replace(".","_thumbs."))

http://jsfiddle.net/LqpL3/1/

share|improve this answer
Thanks worked as well. – user951042 Oct 19 '11 at 2:54
Won't work if there is dot in the filename (before the extension). – Y. Shoham Oct 19 '11 at 2:55

If the file name can contain multiple dots, you need to take the last of it. You can use Regex to do it:

var image = "image.jpg";
image = image.replace(/\.(?!.*\.)/, "_thumbs.");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.