How to remove characters to the right of a javascript string if I found a certain character

1

A string called myString gets 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 character string   '================================='

so that the string looks like this:

minhaString = 'O dependente DEPENDENTE não foi cadastrado. 
Erro: A coluna 'NOME' não pertence à tabela PFDEPENDCOMPL'
    
asked by anonymous 30.08.2018 / 22:05

1 answer

1

Considering that the variable minhaString contains value, it would look like this:

var novaString = minhaString.substr(0, minhaString.indexOf('='));
    
30.08.2018 / 22:15