Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

253
Views
Kotlin split string in the last space

I have a String and i want to split it , and drop the last part .

For example something like that for this input :

var example = "Long string to split in the last space"

I want to achieve this result

var result = "Long string to split in the last"
over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

Use substringBeforeLast:

"Long string to split in the last space".substringBeforeLast(" ")
over 4 years ago · Santiago Trujillo Report

0

A more verbose alternative to substringBeforeLast that works for removing the last n words by using dropLast:

var example = "Long string to split in the last space"
var result = example.split(" ")
                    .dropLast(1)
                    .joinToString(" ")
println(result) // Long string to split in the last
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!