To remove characters to the right of a javascript string if it finds a certain character

Asked

Viewed 138 times

1

A string called myString takes the value below:

minhaString = 'O dependente DEPENDENTE não foi cadastrado. 
Erro: A coluna 'NOME' não pertence à tabela PFDEPENDCOMPL. 
======================================= em 
System.Data.DataRow.GetDataColumn(String columnName)

I want to remove all characters from the following string '======================================='

for the string to look like this:

minhaString = 'O dependente DEPENDENTE não foi cadastrado. 
Erro: A coluna 'NOME' não pertence à tabela PFDEPENDCOMPL'

1 answer

1


whereas the variable minhaString contain value, would be like this:

var novaString = minhaString.substr(0, minhaString.indexOf('='));
  • Thank you! It worked perfectly this method

  • Not at all, mate, tmj!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.