Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

304
Visualizações
Get substring between "first two" occurrences of a character

I have a String:

 String thestra = "/aaa/bbb/ccc/ddd/eee";

Every time, in my situation, for this Sting, a minimum of two slashes will be present without fail.

And I am getting the /aaa/ like below, which is the subString between "FIRST TWO occurrences" of the char / in the String.

 System.out.println("/" + thestra.split("\\/")[1] + "/");

It solves my purpose but I am wondering if there is any other elegant and cleaner alternative to this?

Please notice that I need both slashes (leading and trailing) around aaa. i.e. /aaa/

over 4 years ago · Santiago Trujillo
3 Respostas
Responde à pergunta

0

You can use indexOf, which accepts a second argument for an index to start searching from:

int start = thestra.indexOf("/");
int end = thestra.indexOf("/", start + 1) + 1;
System.out.println(thestra.substring(start, end));

Whether or not it's more elegant is a matter of opinion, but at least it doesn't find every / in the string or create an unnecessary array.

over 4 years ago · Santiago Trujillo Relatório

0

Scanner::findInLine returning the first match of the pattern may be used:

String thestra = "/aaa/bbb/ccc/ddd/eee";
System.out.println(new Scanner(thestra).findInLine("/[^/]*/"));

Output:

/aaa/
over 4 years ago · Santiago Trujillo Relatório

0

Use Pattern and Matcher from java.util.regex.

Pattern pattern = Pattern.compile("/.*?/");
Matcher matcher = pattern.matcher(str);
if (matcher.find()) { 
    String match = matcher.group(0);  // output
}
over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda