top of page
  • Foto do escritorJorge Guerra Pires

Agulha no palheiro: como achar uma única palavra em uma string usando JavaScript




Considere o seguinte cenário.


Estou usando o chatGPT API, e gostaria de ajudar a IA a se orientar. Basicamente, quero direcionar as perguntas com textos de suporte!


Uma solução seria filtrar algumas palavras, e anexar o texto suporte à pergunta feita ao chat. Tudo isso, de forma automática.





JavaScript tem uma forma super-fácil de fazer isso.

Somente use :


string.includes("palavra")

Sim, é inacreditável, rápido e eficiente!


Exemplos




const message = 'Hello world' // Try edit me


// Log to console
console.log(message.includes("Hello"))


const text = `What is Lorem Ipsum? Lorem Ipsum is simply dummy text of the printing and Hello typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.`

// Log to console
console.log(text.includes("Hello"))



No primeiro exemplo, temos uma string simples, e queremos achar somente uma palavra. No segundo exemplo, temos uma parágrafo inteiro. A velocidade é a mesma, pelo menos, que consigo perceber.


Fonte:


23 visualizações0 comentário

Comments


bottom of page