文字を増やすために使用できる方法は何ですか?


98

文字をインクリメントする方法を提供するJavascriptライブラリ(アンダースコア、jQuery、MooToolsなど)を知っている人はいますか?

私は次のようなことができるようになりたいです:

"a"++; // would return "b"

あなたが探している構文が可能であるかどうかはわかりませんが、操作はメソッドを通じて可能です。
anson 2012

アプリケーションとは何ですか?
ヴァレンティーナ2012

回答:


177

シンプルで直接的なソリューション

function nextChar(c) {
    return String.fromCharCode(c.charCodeAt(0) + 1);
}
nextChar('a');

他の人が指摘したように、欠点は、期待どおりに文字「z」のようなケースを処理できない可能性があることです。しかし、それはあなたがそれから何をしたいかによります。上記のソリューションは、「z」の後の文字に対して「{」を返します。これはASCIIの「z」の後の文字なので、ユースケースによっては、探している結果になる可能性があります。


ユニークな文字列ジェネレータ

(2019/05/09更新)

この回答は非常によく知られているので、元の質問の範囲を超えて少し拡大して、Googleからこれにつまづいている人々を潜在的に助けることにしました。

私がよく欲しいのは、特定の文字セット(文字のみを使用するなど)で連続した一意の文字列を生成するものであることがわかったので、この回答を更新して、ここでそれを行うクラスを含めました。

class StringIdGenerator {
  constructor(chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') {
    this._chars = chars;
    this._nextId = [0];
  }

  next() {
    const r = [];
    for (const char of this._nextId) {
      r.unshift(this._chars[char]);
    }
    this._increment();
    return r.join('');
  }

  _increment() {
    for (let i = 0; i < this._nextId.length; i++) {
      const val = ++this._nextId[i];
      if (val >= this._chars.length) {
        this._nextId[i] = 0;
      } else {
        return;
      }
    }
    this._nextId.push(0);
  }

  *[Symbol.iterator]() {
    while (true) {
      yield this.next();
    }
  }
}

使用法:

const ids = new StringIdGenerator();

ids.next(); // 'a'
ids.next(); // 'b'
ids.next(); // 'c'

// ...
ids.next(); // 'z'
ids.next(); // 'A'
ids.next(); // 'B'

// ...
ids.next(); // 'Z'
ids.next(); // 'aa'
ids.next(); // 'ab'
ids.next(); // 'ac'

単純な解決策ですが、「z」または「Z」の発生を処理しません。
トレント


調べて、表示されないユニコード文字を旧式のIBMコードページ437フォントに選択しようとしていたときに、まさに私が探していたもの。文字入力の時間を文字通り節約できました。
LeftOnTheMoon

1
Daniel Thompsonこのソリューションは、十分以上の情報を提供します。コーナーケースを自分で処理できます。結局のところ、これは「お互いに助け合う」ウェブサイトであり、無料のウェブサイトのために私の仕事をしていない。
Bojidar Stanchev

開始文字を引数にする方法を理解するのにしばらく時間がかかりました。._nextId = [chars.split( '')。findIndex(x => x == start)]を使用してしまいました。あなたはそれはあなたが渡されたものよりも1以上を開始したい場合は1 +開始。
JohnDavid

49

単純なjavascriptでうまくいくはずです。

String.fromCharCode('A'.charCodeAt() + 1) // Returns B

1
純粋な魅力、空白や特殊文字を避けるための提案。coderByteはこれについて質問があります
sg28 '11 / 07/18

22

指定された文字がzの場合はどうなりますか?これはより良い解決策です。A、B、C ... X、Y、Z、AA、AB、...などになります。基本的には、Excelスプレッドシートの列IDのような文字をインクリメントします。

nextChar( 'yz'); // "ZA"を返します

    function nextChar(c) {
        var u = c.toUpperCase();
        if (same(u,'Z')){
            var txt = '';
            var i = u.length;
            while (i--) {
                txt += 'A';
            }
            return (txt+'A');
        } else {
            var p = "";
            var q = "";
            if(u.length > 1){
                p = u.substring(0, u.length - 1);
                q = String.fromCharCode(p.slice(-1).charCodeAt(0));
            }
            var l = u.slice(-1).charCodeAt(0);
            var z = nextLetter(l);
            if(z==='A'){
                return p.slice(0,-1) + nextLetter(q.slice(-1).charCodeAt(0)) + z;
            } else {
                return p + z;
            }
        }
    }
    
    function nextLetter(l){
        if(l<90){
            return String.fromCharCode(l + 1);
        }
        else{
            return 'A';
        }
    }
    
    function same(str,char){
        var i = str.length;
        while (i--) {
            if (str[i]!==char){
                return false;
            }
        }
        return true;
    }

// below is simply for the html sample interface and is unrelated to the javascript solution

var btn = document.getElementById('btn');
var entry = document.getElementById('entry');
var node = document.createElement("div");
node.id = "node";

btn.addEventListener("click", function(){
  node.innerHTML = '';
  var textnode = document.createTextNode(nextChar(entry.value));
  node.appendChild(textnode);
  document.body.appendChild(node);
});
<input id="entry" type="text"></input>
<button id="btn">enter</button>


に変更さif (same(u,'Z')){if (u == 'Z'){、完全に機能します。ありがとうございます!
Sean Kendle 2016

うまくいきました。フィードバックに感謝します。たぶん、最初のエラーは、タイトルの付いた関数がそこにsame(str,char)貼り付けられていないbcsがあったことですか?私は知らないよ。
ロニーロイストン

お奨めsame()は、カスタム関数であることは明らかです。まあ、うまくいきます。==もし私が超確実にしたいなら、を使うことができます===が、私はそれをテストしました、そしてそれは大丈夫です。再度、感謝します!
ショーンケンドル2016

zzと入力すると、トリプルAになります。これはコードのバグですか?
Amr Ashraf 2017年

1
私はそうは思いませんか?zzの後に何が来る?ああ?このマシンにExcelをインストールしていません(再確認するため)が、私には適切に聞こえます。
ロニーロイストン2017年

5

1つの可能な方法は、以下に定義されているとおりです。

function incrementString(value) {
  let carry = 1;
  let res = '';

  for (let i = value.length - 1; i >= 0; i--) {
    let char = value.toUpperCase().charCodeAt(i);

    char += carry;

    if (char > 90) {
      char = 65;
      carry = 1;
    } else {
      carry = 0;
    }

    res = String.fromCharCode(char) + res;

    if (!carry) {
      res = value.substring(0, i) + res;
      break;
    }
  }

  if (carry) {
    res = 'A' + res;
  }

  return res;
}

console.info(incrementString('AAA')); // will print AAB
console.info(incrementString('AZA')); // will print AZB
console.info(incrementString('AZ')); // will print BA
console.info(incrementString('AZZ')); // will print BAA
console.info(incrementString('ABZZ')); // will print ACAA
console.info(incrementString('BA')); // will print BB
console.info(incrementString('BAB')); // will print BAC

// ... and so on ...

4

あなたはこれを試すことができます

console.log( 'a'.charCodeAt​(0))​

最初にそれをアスキー番号に変換します。それをインクリメントします。次にアスキーから文字に変換します。

var nex = 'a'.charCodeAt(0);
console.log(nex)
$('#btn1').on('click', function() {
   var curr = String.fromCharCode(nex++)
   console.log(curr)
});

FIDDLEを確認する


1
うーん。さらにjQueryが必要です。
Jasper

4

文字のシーケンスを複数回使用する必要があったため、このSOの質問に基づいてこの機能を作成しました。これが他の人の役に立つことを願っています。

function charLoop(from, to, callback)
{
    var i = from.charCodeAt(0);
    var to = to.charCodeAt(0);
    for(;i<=to;i++) callback(String.fromCharCode(i));
}
  • から-開始文字
  • -最後の文字
  • callback(letter)-シーケンスの各文字に対して実行する関数

どうやって使うのですか:

charLoop("A", "K", function(char) {
    //char is one letter of the sequence
});

この実用的なデモを見る


3

これらすべての答えに加えて:

// first code on page
String.prototype.nextChar = function(i) {
    var n = i | 1;
    return String.fromCharCode(this.charCodeAt(0) + n);
}

String.prototype.prevChar = function(i) {
    var n = i | 1;
    return String.fromCharCode(this.charCodeAt(0) - n);
}

例:http : //jsfiddle.net/pitaj/3F5Qt/


2

これはうまくいきます:

var nextLetter = letter => {
    let charCode = letter.charCodeAt(0);
    let isCapital = letter == letter.toUpperCase();

    if (isCapital == true) {
        return String.fromCharCode((charCode - 64) % 26 + 65)
    } else {
        return String.fromCharCode((charCode - 96) % 26 + 97)
    }
}

EXAMPLES

nextLetter("a"); // returns 'b'
nextLetter("z"); // returns 'a'
nextLetter("A"); // returns 'B'
nextLetter("Z"); // returns 'A'

1

ちょうど笑いの解決策

function nextLetter(str) {
  const Alphabet = [
    // lower case alphabet
    "a", "b", "c",
    "d", "e", "f",
    "g", "h", "i",
    "j", "k", "l",
    "m", "n", "o",
    "p", "q", "r",
    "s", "t", "u",
    "v", "w", "x",
    "y", "z",
    // upper case alphabet
    "A", "B", "C",
    "D", "E", "F",
    "G", "H", "I",
    "J", "K", "L",
    "M", "N", "O",
    "P", "Q", "R",
    "S", "T", "U",
    "V", "W", "X",
    "Y", "Z"
  ];

  const LetterArray = str.split("").map(letter => {
    if (Alphabet.includes(letter) === true) {
      return Alphabet[Alphabet.indexOf(letter) + 1];
    } else {
      return " ";
    }
  });

  const Assemble = () => LetterArray.join("").trim();
  return Assemble();
}


console.log(nextLetter("hello*3"));


0

これは本当に古いです。しかし、私はこの機能を必要としており、私のユースケースに最適なソリューションはありませんでした。a、b、c ... z、aa、ab ... zz、aaa ...を生成したかった。この単純な再帰が仕事をします。

function nextChar(str) {
if (str.length == 0) {
    return 'a';
}
var charA = str.split('');
if (charA[charA.length - 1] === 'z') {
    return nextID(str.substring(0, charA.length - 1)) + 'a';
} else {
    return str.substring(0, charA.length - 1) +
        String.fromCharCode(charA[charA.length - 1].charCodeAt(0) + 1);
}
};

0

クロージャーに{a: 'b'、b: 'c'など}を含む関数を作成します。

let nextChar = (s => (
    "abcdefghijklmopqrstuvwxyza".split('')
    .reduce((a,b)=> (s[a]=b, b)), // make the lookup
c=> s[c] // the function returned
))({}); // parameter s, starts empty

使用法:-

nextChar('a')

大文字と数字の追加:-

let nextCh = (
    (alphabeta, s) => (
        [alphabeta, alphabeta.toUpperCase(), "01234567890"]
            .forEach(chars => chars.split('')
               .reduce((a,b) => (s[a]=b, b))), 
        c=> s[c] 
    )
)("abcdefghijklmopqrstuvwxyza", {});

ps Javascriptの一部のバージョンでは、[...chars]代わりにchars.split('')



0

これは、https://stackoverflow.com/a/28490254/881441で送信したrot13アルゴリズムのバリエーションです。

function rot1(s) {
  return s.replace(/[A-Z]/gi, c =>
    "BCDEFGHIJKLMNOPQRSTUVWXYZAbcdefghijklmnopqrstuvwxyza"[
    "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".indexOf(c) ] )
}

下部に入力コードがあり、検索されたコーデックが上部にあります(つまり、出力コードは入力コードと同じですが、1だけシフトされています)。関数は文字のみを変更します。つまり、他の文字が渡された場合、このコーデックによって変更されません。


0

function charLoop(from, to, callback) {
    var i = from.charCodeAt(0);
    var to = to.charCodeAt(0);
    for (; i <= to; i++) {
        callback(String.fromCharCode(i));
    }
}

var sequence = "";
charLoop("A", "Z", function (char) {
    sequence += char + " ";
});

sequence = sequence.trim();
sequence = sequence.split(" ");

var resseq = sequence;
var res = "";
var prevlet = "";
var nextlet = "";

for (b = 0; b < resseq.length; b++) {
    if (prevlet != "") {
        prevlet = resseq[b];
    }

    for (a = 0; a < sequence.length; a++) {
        for (j = 1; j < 100; j++) {
            if (prevlet == "") {
                prevlet = sequence[a];
                nextlet = sequence[a + 1];
                res += sequence[a] + sequence[a] + 0 + j + " ";
            }
            else {

                if (j < 10) {
                    res += prevlet + sequence[a] + 0 + j + " ";
                }
                else {
                    res += prevlet + sequence[a] + j + " ";
                }
            }
        }
    }
}

document.body.innerHTML = res;

1
ここでは、コードのブロックだけでなく、ここで正確に何をしたのか、それがどのように役立つのかを説明したいと思うかもしれません、ありがとう!-多分、コード内のいくつかの役立つcmoments?
マークデイビス

String.fromCharCode()文字の文字コードを返します。
LokeshKumar

0

@Nathan壁の回答の増分と減分に基づく

// Albhabet auto increment and decrement
class StringIdGenerator {
    constructor(chars = '') {
      this._chars = chars;
    }

  next() {
    var u = this._chars.toUpperCase();
    if (this._same(u,'Z')){
        var txt = '';
        var i = u.length;
        while (i--) {
            txt += 'A';
        }
        this._chars = txt+'A';
        return (txt+'A');
    } else {
      var p = "";
      var q = "";
      if(u.length > 1){
          p = u.substring(0, u.length - 1);
          q = String.fromCharCode(p.slice(-1).charCodeAt(0));
      }
      var l = u.slice(-1).charCodeAt(0);
      var z = this._nextLetter(l);
      if(z==='A'){
        this._chars = p.slice(0,-1) + this._nextLetter(q.slice(-1).charCodeAt(0)) + z;
          return p.slice(0,-1) + this._nextLetter(q.slice(-1).charCodeAt(0)) + z;
      } else {
        this._chars = p+z;
          return p + z;
      }
    }
  }

  prev() {
    var u = this._chars.toUpperCase();
    console.log("u "+u)
    var l = u.slice(-1).charCodeAt(0);
    var z = this._nextLetter(l);
    var rl = u.slice(1)
    var y = (rl == "A") ? "Z" :this._prevLetter(rl.charCodeAt(0))
      var txt = '';
      var i = u.length;
      var j = this._chars
      var change = false
      while (i--) {
        if(change){
          if (u[u.length-1] == "A"){
            txt += this._prevLetter(u[i].charCodeAt(0))
          }else{
            txt += u[i]
          }
          
        }else{
          if (u[u.length-1] == "A"){
            txt += this._prevLetter(u[i].charCodeAt(0))
            change = true
          }else{
            change = true
            txt += this._prevLetter(u[i].charCodeAt(0))
          }
        }
      }
      if(u == "A" && txt == "Z"){
        this._chars = ''
      }else{
        this._chars = this._reverseString(txt);
      }
      console.log(this._chars)
      return (j);
  }
  _reverseString(str) {
      return str.split("").reverse().join("");
  }
  _nextLetter(l){
      if(l<90){
          return String.fromCharCode(l + 1);
      }
      else{
          return 'A';
      }
  }

  _prevLetter(l){
    if(l<=90){
      if(l == 65) l = 91
        return String.fromCharCode(l-1);
    }
    else{
        return 'A';
    }
  }
  _same(str,char){
      var i = str.length;
      while (i--) {
          if (str[i]!==char){
              return false;
          }
      }
      return true;
  }
    
}

使用法

const ids = new StringIdGenerator();

ids.next(); 
ids.prev();
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.