1
我有快捷方式創建getter方法,這裏是我的代碼片段現在:如何將Textmate片段輸入的首字母小寫?
public function get${1:PropertyName}() {
return \$this->${1:propertyName};
}
$0
輸出我在尋找:
public function getAreaCode() {
return $this->areaCode;
}
所以現在的問題是,如何自動變換輸入的第一字母變成小寫,但只在第二行?