python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Take only right word a field column in Teradata
I want to have only the right word of a string like this in Teradata?
Tim Tom Dave
How to trim Tim and Tom and only get Dave?
substring(ABC, Index(ABC, ' ') -1)
This is always from left side.
HansMuff
Votes: 0
Answers: 2
how to remove double quotes of a variable using trim in terraform
locals {
check_list ="test"
trimoutput = trim(local.check_list, "")
}
currently, the trim output value is still "test"
Expected output is just test. I need th...
Steven58
Votes: 0
Answers: 2
Detect integer value inside a string, alter it and leave it in the same place within the string
Lets say we have a string that looks something like this:
10.000 some text 5.200 some text 5.290 some text
What i want to do is to remove the last zero (if it is present) from all of the present int v...
Čendi
Votes: 0
Answers: 1
Differences of TRIM and TRIM BOTH in Spark
I have created a Spark SQL temp view named old_ticket_df. In the temp view old_ticket_df I have a column "approver" which appears to have whitespace. I have tried to remove the whitespace us...
Reshma Joseph
Votes: 0
Answers: 1