angularjsの文字列の最初の文字を大文字にしたい
私が使用した{{ uppercase_expression | uppercase}}
ので、文字列全体を大文字に変換します。
angularjsの文字列の最初の文字を大文字にしたい
私が使用した{{ uppercase_expression | uppercase}}
ので、文字列全体を大文字に変換します。
回答:
この大文字のフィルターを使用する
var app = angular.module('app', []);
app.controller('Ctrl', function ($scope) {
$scope.msg = 'hello, world.';
});
app.filter('capitalize', function() {
return function(input) {
return (angular.isString(input) && input.length > 0) ? input.charAt(0).toUpperCase() + input.substr(1).toLowerCase() : input;
}
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="app">
<div ng-controller="Ctrl">
<p><b>My Text:</b> {{msg | capitalize}}</p>
</div>
</div>
return (angular.isString(s) && s.length > 0) ? s[0].toUpperCase() + s.substr(1).toLowerCase() : s;
。文字列でない場合は、変更せずに返します。
代わりにCSSを使用できるので、angular / jsを使用しないでください:
CSSにクラスを追加します。
.capitalize {
text-transform: capitalize;
}
次に、単純に式(exの場合)をhtmlでラップします。
<span class="capitalize">{{ uppercase_expression }}</span>
jsは必要ありません;)
:first-letter
疑似要素セレクターで展開します。他にカバーされていないものはありますか?:)
Bootstrapを使用する場合は、text-capitalize
ヘルパークラスを追加するだけです。
<p class="text-capitalize">CapiTaliZed text.</p>
編集:リンクが再び死んだ場合に備えて:
テキスト変換
テキスト大文字化クラスを使用して、コンポーネント内のテキストを変換します。
小文字のテキスト。
大文字のテキスト。
CapiTaliZed Text。<p class="text-lowercase">Lowercased text.</p> <p class="text-uppercase">Uppercased text.</p> <p class="text-capitalize">CapiTaliZed text.</p>
text-capitalizeが各単語の最初の文字のみを変更し、他の文字の大文字小文字は影響を受けないことに注意してください。
text-transform: capitalize;
Angular 4+を使用している場合は、 titlecase
{{toUppercase | titlecase}}
パイプを書く必要はありません。
より良い方法
app.filter('capitalize', function() {
return function(token) {
return token.charAt(0).toUpperCase() + token.slice(1);
}
});
パフォーマンスが優れている場合は、AngularJSフィルターを使用しないようにしてください。これらのフィルターは、式ごとに2回適用され、安定性を確認します。
より良い方法は、CSS ::first-letter
疑似要素をで使用することtext-transform: uppercase;
です。span
ただし、などのインライン要素では使用できません。そのため、次善の策はtext-transform: capitalize;
、すべての単語を大文字にするブロック全体で使用することです。
例:
var app = angular.module('app', []);
app.controller('Ctrl', function ($scope) {
$scope.msg = 'hello, world.';
});
.capitalize {
display: inline-block;
}
.capitalize::first-letter {
text-transform: uppercase;
}
.capitalize2 {
text-transform: capitalize;
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="app">
<div ng-controller="Ctrl">
<b>My text:</b> <div class="capitalize">{{msg}}</div>
<p><b>My text:</b> <span class="capitalize2">{{msg}}</span></p>
</div>
</div>
::first-letter
、display: inline
またはdisplay: flex
で機能せず、display:block
またはinline-block
要素でのみ機能します
@TrampGuyからの答えが好きです
CSSは(常にではなく)常に優れた選択肢であるためtext-transform: capitalize;
、次のようにしてください。
しかし、コンテンツがそもそもすべて大文字の場合はどうでしょうか。text-transform: capitalize;
「FOO BAR」などのコンテンツを試しても、ディスプレイには「FOO BAR」が表示されます。その問題を回避するにtext-transform: capitalize;
は、CSSにを入れるだけでなく、文字列を小文字にすることもできます。
<ul>
<li class="capitalize">{{ foo.awesome_property | lowercase }}</li>
</ul>
@TrampGuyのCapitalizeクラスを使用しています。
.capitalize {
text-transform: capitalize;
}
そのため、foo.awsome_property
通常「FOO BAR」を印刷するふりをすると、目的の「Foo Bar」が印刷されます。
これは別の方法です:
{{some_str | limitTo:1 | uppercase}}{{some_str.substr(1) | lowercase }}
Angular 2以降では、を使用できます{{ abc | titlecase }}
。
完全なリストについては、Angular.io APIを確認してください。
.capitalize {
display: inline-block;
}
.capitalize:first-letter {
font-size: 2em;
text-transform: capitalize;
}
<span class="capitalize">
really, once upon a time there was a badly formatted output coming from my backend, <strong>all completely in lowercase</strong> and thus not quite as fancy-looking as could be - but then cascading style sheets (which we all know are <a href="http://9gag.com/gag/6709/css-is-awesome">awesome</a>) with modern pseudo selectors came around to the rescue...
</span>
meanjs.orgのAngularJSの場合、カスタムフィルターを modules/core/client/app/init.js
文の各単語を大文字にするためのカスタムフィルターが必要でした。これを行う方法を次に示します。
angular.module(ApplicationConfiguration.applicationModuleName).filter('capitalize', function() {
return function(str) {
return str.split(" ").map(function(input){return (!!input) ? input.charAt(0).toUpperCase() + input.substr(1).toLowerCase() : ''}).join(" ");
}
});
map関数のクレジットは@Naveen rajに送られます
カスタムフィルターを作成したくない場合は、直接使用できます
{{ foo.awesome_property.substring(0,1) | uppercase}}{{foo.awesome_property.substring(1)}}
var app = angular.module("app", []);
app.filter('capitalize', function() {
return function(str) {
if (str === undefined) return; // avoid undefined
str = str.toLowerCase().split(" ");
var c = '';
for (var i = 0; i <= (str.length - 1); i++) {
var word = ' ';
for (var j = 0; j < str[i].length; j++) {
c = str[i][j];
if (j === 0) {
c = c.toUpperCase();
}
word += c;
}
str[i] = word;
}
str = str.join('');
return str;
}
});
この問題に独自の見解を追加するために、私はカスタムディレクティブを自分で使用します。
app.directive('capitalization', function () {
return {
require: 'ngModel',
link: function (scope, element, attrs, modelCtrl) {
modelCtrl.$parsers.push(function (inputValue) {
var transformedInput = (!!inputValue) ? inputValue.charAt(0).toUpperCase() + inputValue.substr(1).toLowerCase() : '';
if (transformedInput != inputValue) {
modelCtrl.$setViewValue(transformedInput);
modelCtrl.$render();
}
return transformedInput;
});
}
};
宣言したら、次のようにHTML内に配置できます。
<input ng-model="surname" ng-trim="false" capitalization>
代わりに、文の各単語を大文字にしたい場合は、このコードを使用できます
app.filter('capitalize', function() {
return function(input, scope) {
if (input!=null)
input = input.toLowerCase().split(' ');
for (var i = 0; i < input.length; i++) {
// You do not need to check if i is larger than input length, as your for does that for you
// Assign it back to the array
input[i] = input[i].charAt(0).toUpperCase() + input[i].substring(1);
}
// Directly return the joined string
return input.join(' ');
}
});
そして、フィルター「capitalize」を文字列入力に追加するだけです。例-{{name | 大文字}}
Angular 4またはCLIでは、次のようなPIPEを作成できます:
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'capitalize'
})
/**
* Place the first letter of each word in capital letters and the other in lower case. Ex: The LORO speaks = The Loro Speaks
*/
export class CapitalizePipe implements PipeTransform {
transform(value: any): any {
value = value.replace(' ', ' ');
if (value) {
let w = '';
if (value.split(' ').length > 0) {
value.split(' ').forEach(word => {
w += word.charAt(0).toUpperCase() + word.toString().substr(1, word.length).toLowerCase() + ' '
});
} else {
w = value.charAt(0).toUpperCase() + value.toString().substr(1, value.length).toLowerCase();
}
return w;
}
return value;
}
}
Angularには文字列の最初の文字を大文字にする「タイトルケース」があります
例:
envName | titlecase
EnvNameとして表示されます
補間で使用する場合、次のようなすべてのスペースを避けます
{{envName|titlecase}}
envNameの値の最初の文字は大文字で出力されます。
ニディッシュの答えに加えて、
AngularJを使用していて、文字列内の各単語の最初の文字を大文字にする場合は、次のコードを使用します。
var app = angular.module('app', []);
app.controller('Ctrl', function ($scope) {
$scope.msg = 'hello, world.';
});
app.filter('titlecase', function() {
return function(input) {
//Check for valid string
if(angular.isString(input) && input.length > 0) {
var inputArray = input.split(' ');
for(var i=0; i<inputArray.length; i++) {
var value = inputArray[i];
inputArray[i] = value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
}
return inputArray.join(' ');
} else {
return input;
}
};
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="app">
<div ng-controller="Ctrl">
<p><b>My Text:</b> {{msg | titlecase}}</p>
</div>
</div>