#文字列検索
python
'a' in array
javascript
array.indexOf('a')
#置換
python
str.replace('before','after')
javascript
str.replace('/a/g,'-')
#文字列に変換
python
str(x)
javascript
String(x)
Go to list of users who liked
More than 3 years have passed since last update.
#文字列検索
python
'a' in array
javascript
array.indexOf('a')
#置換
python
str.replace('before','after')
javascript
str.replace('/a/g,'-')
#文字列に変換
python
str(x)
javascript
String(x)
Register as a new user and use Qiita more conveniently
Go to list of users who liked