文字列操作の基本


  1. 文字列の長さを取得する方法: 文字列の長さを知るには、組み込みの関数やメソッドを使用します。以下はいくつかの例です。

Pythonの場合:

text = "Hello, world!"
length = len(text)
print(length)  # 出力: 13

JavaScriptの場合:

const text = "Hello, world!";
const length = text.length;
console.log(length);  // 出力: 13
  1. 文字列の連結方法: 複数の文字列を結合するには、+演算子や組み込みのメソッドを使用します。

Pythonの場合:

text1 = "Hello"
text2 = "world!"
result = text1 + " " + text2
print(result)  # 出力: Hello world!

JavaScriptの場合:

const text1 = "Hello";
const text2 = "world!";
const result = text1 + " " + text2;
console.log(result);  // 出力: Hello world!
  1. 文字列の分割方法: 文字列を分割するには、特定の区切り文字を使用します。

Pythonの場合:

text = "apple,banana,orange"
fruits = text.split(",")
print(fruits)  # 出力: ['apple', 'banana', 'orange']

JavaScriptの場合:

const text = "apple,banana,orange";
const fruits = text.split(",");
console.log(fruits);  // 出力: ['apple', 'banana', 'orange']
  1. 文字列の置換方法: 特定の部分文字列を別の文字列で置換するには、置換関数を使用します。

Pythonの場合:

text = "Hello, name!"
new_text = text.replace("name", "John")
print(new_text)  # 出力: Hello, John!

JavaScriptの場合:

const text = "Hello, name!";
const newText = text.replace("name", "John");
console.log(newText);  // 出力: Hello, John!

これらは文字列操作の基本的な例ですが、プログラミング言語によって異なる表記や関数が存在する場合もあります。ご参考になれば幸いです。