В продолжение прошлого поста про цифры в мире строк.
Почему методы isdigit() и isnumeric() не определяют в строке float и отрицательные значения?
Дело в том, что эти методы работают с ЦИФРАМИ, то есть с единичным символом. А строка "-2" или "3.4" это уже ЧИСЛО. То есть не символ а значение, записанное несколькими символами.
Все озвученные методы проходятся по каждому символу строки и проверяют их индивидуально.
В юникоде есть символы цифр с точками "🄀⒈⒉⒊⒋⒌⒍⒎⒏⒐"
Каждая из них это ОДИН СИМВОЛ, поэтому он будет считаться цифрой
>>> '⒌'.isdigit(), '⒌'.isnumeric()
True, True
Но когда мы пишем это выражение в два символа ( 5+точка), то это не работает.
>>> '5.'.isdigit(), '5.'.isnumeric()
False, False
А еще есть такие символы
>>> '⑴⑵⑶⑷⑸'.isdigit()
True
>>> '🄁🄂🄃'.isdigit()
True
Но они не преобразуются в десятичные цифры
>>> '⒈'.isdecimal()
False
>>> '🄃'.isdecimal()
False
>>> '⑶'.isdecimal()
False
#basic
#typescript#ai#cli#summarize#typescript
Summarize is a fast tool for summarizing URLs, PDFs, images, audio/video, YouTube, and podcasts via Chrome Side Panel (with chat and history), Firefox Sidebar, or CLI. Install the extension from Chrome Web Store, add the local daemon with `npm i -g @steipete/summarize` and `summarize daemon install --token <TOKEN>`, then get one-click summaries, YouTube slides with OCR/timestamps, streaming Markdown, and media transcription. It saves time by quickly digesting long content so you focus on key insights without reading everything.
https://github.com/steipete/summarize
✨AI Tools for Sending Message
Unlock AI Power in Your Chat! Just type your message and use the AI tools directly within this chat. Get instant summaries, rewrites, and more! Let's get started!
✍️Summarize
📝Rewrite
😉Add Emoji to the Text
🔎Explaining Subject
❤️Graph Messenger 11.20.0
🗓Added from: June 2, 2025
#features#ai#ai_tools#chat
#summarize#rewrite
@GraphMessenger
@GraphMessengerTips
✨AI Tools
Supercharge Your Conversations with AI! Want to summarize a message, obtain key points of the message, explain the subject of the message, or rewrite something for clarity? Use our AI tools right here in the chat!
✍️Summarize Message
🗂Obtain Key Points of the message
🔎Explanation of the message subject
📝Rewrite Message
😉Add Emoji to the Text
❤️Graph Messenger 11.20.0
🗓Added from: June 2, 2025
#features#ai#ai_tools#chat
#summarize#key_points#explain
@GraphMessenger
@GraphMessengerTips