将标题页中的单词大写直到连字符

时间:2012-07-06 11:04:51

标签: javascript jquery capitalize

这是我页面的标题:

<title>john smith - Site and site - jobs</title>

我必须将页面标题大写,直到第一个hifen( - )。这是我的代码,但丢失了第二部分和第一个连字符。

function toTitleCase(str){
    var str  = document.title;
    subTitle = str.split('-')[0];
    return str.substring(0,str.indexOf('-')).replace(/\w\S*/g, function(txt){
        return txt.charAt(0).toUpperCase() + txt.substring(1);
    });
}
document.title = toTitleCase(document.title);

6 个答案:

答案 0 :(得分:1)

function toTitleCase(str){
    str = str.split('-');
    str[0]=str[0].replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
    return str.join("-");
    }
document.title = toTitleCase(document.title);

答案 1 :(得分:1)

总是很好地投入核REGEX路线......

var str = "some words - are - here";
console.log("this is - a - string".replace(/^[^\-]*/, function($0) {
    return $0.replace(/\b[a-z]/g, function($0) { return $0.toUpperCase(); });
}));

输出:

"Some Words - are - here"

答案 2 :(得分:0)

总结答案“最好的”+我的一粒盐:

String.prototype.capitalize = function () {
  return this.replace(/\b[a-z]/g, function ($0) { return $0.toUpperCase(); });
};

function capitalizeTitle()
{
  document.title = document.title.replace(/^[^\-]*/, function($0) {
    return $0.capitalize();
  });
}

capitalizeTitle();

答案 3 :(得分:0)

此代码可以帮助您。

function toTitleCase(str) {
        subTitle = str.split('-')[0].capitalize();
        return subTitle + str.substring(subTitle.length);
    }

    String.prototype.capitalize = function () {
        return this.replace(/\w\S*/g, function (txt) { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); });
    }

答案 4 :(得分:0)

嘿,请试试这个:http://jsfiddle.net/LK3Vd/

知道我是否遗漏了什么。

希望这有助于:)

<强>码

var str = $('#foo').html();
str = str.substring(0, str.indexOf('-'));

str = str.toLowerCase().replace(/\b[a-z]/g, function(letter) {
    return letter.toUpperCase();
});

答案 5 :(得分:0)

这可能会有所帮助..

function ok()
{
  var str  = document.title;
  document.title=str.substring(0, str.indexOf('-')).toUpperCase()+str.substring(str.indexOf('-'),str.length);

}