Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

439
Vistas
path url split() find() angular

I have urls and I want to recover the beginning of the path but I don't know how to do it and being a beginner according to my research I should use the split() and find() method.

Here are the urls:

/test/someurls

/angular/someurls

I need to get /test and /angular is it possible to do that?

Thanks in advance.

ngOnInit() {

 let firstUrl: string = '/test/someurls';
 let secondUrl:string = '/angular/someurls';

 let t = firstUrl.split(" ").find(element =>element.startWith('/test');
    console.log(t);
}
about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

Here is code using split function.

function getBeginning(a) {
  return "/" + a.split("/")[1];
}
console.log(getBeginning("/test/some"));
console.log(getBeginning("/angular/some"));
about 4 years ago · Juan Pablo Isaza Denunciar

0

Another interesting way with Angular api:

const urlTree = this.router.parseUrl('/angular/someurls');


...
getBeginningFromUrlTree(urlTree: UrlTree): string {
  return `/${urlTree.root.children.primary.segments[0].path}`;
}
about 4 years ago · Juan Pablo Isaza Denunciar

0


crumbs = this.router.url.split('/');

constructor(private router: Router) {}

Something like this ?

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda