Regex ile string icerisindeki uzun metni parcalara bolmek
Kelimlere Gore Bolmek
const chunks = transcribedText.match(/(\b.{1,1000}\b)/g) || []
Cumlelere Gore Bolmek
const chunks = transcribedText.match(/(.{1,1000}[.!?])/g) || []
Karakterler Gore Bolmek
const chunks = transcribedText.match(/.{1,1000}/g) || []
PreviousRaspberryPi Sifirdan Kurulumu, SSH ve VNC baglantisi, ngrok ile internetten erisNextreturn await Promise ile return Promise farki
Last updated
Was this helpful?