Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/696f2fb1-5da0-8003-a4d3-9f6f3c1c8466
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== ## === ==== <syntaxhighlight lang="js">const THIN = "\u2009"; ==== const ZWS = "\u200B"; // Mark intentional spelling like: H O A → H O A function markSpelling(text) { return text.replace(/\b([A-Z])\s+([A-Z])\b/g, <code>$1${THIN}$2</code>); } // Mark Vietnamese multi-syllable word (demo) function markWord(word) { return word.split(" ").join(ZWS); } // Example let text = "I M không phải là im. học sinh chăm học."; text = markSpelling(text); text = text.replace("học sinh", markWord("học sinh")); console.log(text); </syntaxhighlight> 👉 Gửi text này sang Web Speech API → khác hẳn ngay. ==== <syntaxhighlight lang="python">THIN = "\u2009" ==== ZWS = "\u200B" def mark_spelling(text): import re return re.sub(r'\b([A-Z])\s+([A-Z])\b', r'\1'+THIN+r'\2', text) def mark_word(words): return ZWS.join(words.split(" ")) text = "I M không phải là im. học sinh chăm học." text = mark_spelling(text) text = text.replace("học sinh", mark_word("học sinh")) print(text) </syntaxhighlight> 📌 Không phá text, chỉ thêm “tín hiệu ngầm”.
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)