UUID에서 대시를 제거하는 방법
Python에는 UUID를 쉽게 생성할 수 있는 내장
uuid
라이브러리가 있습니다.$ python3
Python 3.8.1 (default, Feb 12 2020, 16:30:11)
[GCC 7.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import uuid
>>> print(uuid.uuid4())
8791f25b-d4ca-4f10-8f60-407a507edefe
자, 어떻게 8791f25b-d4ca-4f10-8f60-407a507edefe를 8791f25bd4ca4f108f60407a507edefe로 바꿀 수 있습니까?
이 문제에 대한
regex
솔루션이 있지만 이 문제를 해결하기 위해 파이썬을 사용하고 싶습니다.# utils.py
from uuid import UUID
def uuid_to_hex(uuid):
"""Turn uuid4 with dashes to hex
From : 8791f25b-d4ca-4f10-8f60-407a507edefe
To : 8791f25bd4ca4f108f60407a507edefe
:param uuid: uuid string with dashes
:type uuid: str
:returns: str - hex of uuid
"""
return UUID(uuid).hex
이 함수의 사용 예:
$ python3
Python 3.8.1 (default, Feb 12 2020, 16:30:11)
[GCC 7.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from utils import uuid_to_hex
>>> _uuid = "8791f25b-d4ca-4f10-8f60-407a507edefe"
>>> print(uuid_to_hex(_uuid))
8791f25bd4ca4f108f60407a507edefe
그리고 예, 저는 문서를 매우 좋아합니다.
>>> uuid_to_hex.__doc__
'Turn uuid4 with dashes to hex\n\n From : 8791f25b-d4ca-4f10-8f60-407a507edefe\n To : 8791f25bd4ca4f108f60407a507edefe\n\n :param uuid: uuid string with dashes\n :type uuid: str\n\n :returns: str - hex of uuid\n '
가독성(?)을 높이기 위해 PEP 484에 도입된 Type Hints로도 이 함수를 작성할 수 있습니다. 유형 힌트에는
Pythhon >= 3.5
가 필요합니다.# utils.py
from uuid import UUID
def uuid_to_hex(uuid: str) -> str:
"""Turn uuid4 with dashes to hex
From : 8791f25b-d4ca-4f10-8f60-407a507edefe
To : 8791f25bd4ca4f108f60407a507edefe
:param uuid: uuid string with dashes
:type uuid: str
:returns: str - hex of uuid
"""
return UUID(uuid).hex
모두 완료되었습니다!
Reference
이 문제에 관하여(UUID에서 대시를 제거하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/serhatteker/how-to-remove-dashes-in-uuid-37i4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)