함수 ucwords()

Jmnote (토론 | 기여)님의 2020년 1월 23일 (목) 11:45 판 (→‎PHP)
title()
ucwords()

1 PHP

echo ucwords('hello, world!');
# Hello, World!
echo ucwords('FooBar');
# FooBar

2 Python

print( 'hello, world!'.title() )
# Hello, World!
print( 'FooBar'.title() )
# Foobar

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}