0
1

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.

python,javascriptでよく使う関数

Last updated at Posted at 2021-02-04

#文字列検索
python

'a' in array

javascript

array.indexOf('a')

#置換
python

str.replace('before','after')

javascript

str.replace('/a/g,'-')

#文字列に変換
python

str(x)

javascript

String(x)
0
1
0

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?