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

436
Views
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 answers
Answer question

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 Report

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 Report

0


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

constructor(private router: Router) {}

Something like this ?

about 4 years ago · Juan Pablo Isaza 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!