0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【JavaScript】文字列に半角空白と全角空白が含まれるか判別する

Last updated at Posted at 2021-01-06

文字列に半角空白と全角空白が含まれるか判別する方法をまとめました。(JavaScript)

こちらを参考にしました。Stack Overflow

修正前

// 半角空白があるか
function hasSpaces(str) {
  if (str.indexOf(' ') !== -1) {
    return true
  } else {
    return false
  }
}

// 全角空白があるか
function hasZenkakuSpaces(str) {
  if (str.indexOf(' ') !== -1) {
    return true
  } else {
    return false
  }
}

// 適当な文字列(この例では2つスペースがある)
const input = 'There is something';

// いくつスペースがあるか格納
let howManySpaces = 0;

for (let i=0; i<input.length; i++) {

  // 半角空白または全角空白があったときの処理
  if (hasSpaces(input[i]) === true || hasZenkakuSpaces(input[i]) === true) {
    howManySpaces++;
  }
}

console.log('スペースの数: ' + howManySpaces);

修正後

コメントで指摘していただいたので、修正しました。ありがとうございました。

// 半角空白があるか
function hasSpaces(str) {
  return str.includes(' ')
}

// 全角空白があるか
function hasZenkakuSpaces(str) {
  return str.includes(' ')
}

// 適当な文字列(この例では2つスペースがある)
const input = 'There is something';

// いくつスペースがあるか格納
let howManySpaces = 0;

for (let i = 0; i < input.length; i++) {

  // 半角空白または全角空白があったときの処理
  if (hasSpaces(input[i]) || hasZenkakuSpaces(input[i])) {
    howManySpaces++;
  }
}

console.log(howManySpaces);
0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?