SOLUCIONADO
Text to column and then delete all between two characters
Opções
- Inscrever-se no RSS Feed
- Marcar tópico como novo
- Marcar tópico como lido
- Flutuar este Tópico do usuário atual
- Marcar como favorito
- Inscrever-se
- Emudecer
- Versão para impressão
saivig68
Meteoro
07-23-2018
01:43 PM
- Marcar como novo
- Marcar como favorito
- Inscrever-se
- Emudecer
- Inscrever-se no RSS Feed
- Realçar
- Imprimir
- Notificar o moderador
Hi All ,
I have the following text field
E.G : $0-$100 (1)|$101-$250 (17)|$251-$500 (17)|Men's (35)|Yellow Gold (35)|20.00 Inch (35)
I am trying to achieve the following
- Parse everything after |
- Delete everything that starts with '(' and ends with ')'
I tried the following :
- Text to column - delimiter is | - WORKS
- Multi Field Formula and apply Regex (.*)\(.* - DOES NOT WORK
- RegEx Tool with expression (.*)\(.* - WORKS ONLY ON THE LAST - Eg Only removed (35) from above example
Can someone point me in the right direction.
Solucionado! Ir para Solução.
2 RESPOSTAS 2
danrh
Pulsar
07-23-2018
01:58 PM
- Marcar como novo
- Marcar como favorito
- Inscrever-se
- Emudecer
- Inscrever-se no RSS Feed
- Realçar
- Imprimir
- Notificar o moderador
rpacheco020
Átomo
03-04-2022
09:15 PM
- Marcar como novo
- Marcar como favorito
- Inscrever-se
- Emudecer
- Inscrever-se no RSS Feed
- Realçar
- Imprimir
- Notificar o moderador
I had the same situation but all the information was between the symbols < and > and it wasn't working.
I had to first replace all < by ( and > by )
After that, your expresion worked perfectly. Thank you very much