Notice
Recent Posts
Recent Comments
Link
투케이2K
22. (python/파이썬) replace , replaceAll 사용해 특정 문자열 변경 수행 실시 본문
[개발 환경 설정]
개발 툴 : SublimeText (PyScript)
개발 언어 : python
[소스 코드]
<!DOCTYPE HTML>
<html lang="ko">
<head>
<title>WebTest</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- [pyScript 사용 관련 CDN 설정 실시] -->
<link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" />
<script defer src="https://pyscript.net/alpha/pyscript.js"></script>
<!-- [pyScript 구문 정의 실시] -->
<py-script>
print("=====================================")
print("[main start]")
print("=====================================")
# [초기 변수 선언 실시]
str_Data = "2K안녕2K반가워"
# [replace 사용해 특정 문자 한개만 변경 수행 실시]
replace_1 = str_Data.replace("2K", "", 1)
# [replaceAll 사용해 특정 문자 전체 변경 수행 실시]
replace_All = str_Data.replace("2K", "")
print("str_Data : {}".format(str_Data))
print("replace_1 : {}".format(replace_1))
print("replace_All : {}".format(replace_All))
</py-script>
</head>
<!-- [body 콘텐츠 작성] -->
<body>
</body>
</html>
[결과 출력]
반응형
'Python' 카테고리의 다른 글
24. (python/파이썬) datetime 사용해 현재 날짜 및 시간 포맷 출력 실시 (0) | 2022.07.16 |
---|---|
23. (python/파이썬) strip (trim) 사용해 불필요한 좌우 공백 문자 제거 수행 실시 (0) | 2022.07.10 |
21. (python/파이썬) 특정 문자열 부분 데이터 출력 수행 실시 - subString (0) | 2022.07.10 |
20. (python/파이썬) for 문을 수행하면서 문자열 한글자씩 출력 수행 실시 - charAt (0) | 2022.07.10 |
19. (python/파이썬) split 사용해 특정 문자 기준으로 문자열 분리 수행 실시 (0) | 2022.07.10 |
Comments