Skip to content

Commit

Permalink
BE: [feat] 코스 태그(GPX 파일명 파싱) 생성 수정 CSID-DGU#32
Browse files Browse the repository at this point in the history
  • Loading branch information
jjin70 committed Nov 25, 2024
1 parent ed4ae62 commit 7d2b73b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public List<CourseDetailResponseDto> getCourseDetails(double lat, double lon) {
private List<String> createTags(String fileName) {
String name = fileName.substring(0, fileName.lastIndexOf('.')); // 확장자 제거
String[] tags = name.split("_"); // 파일명을 '_'로 구분하여 태그 리스트 생성
tags = Arrays.copyOfRange(tags, 1, tags.length); // 첫 번째 태그를 제외한 배열 생성 (파일명 제일 앞에 있는 인덱스 제거)
tags = Arrays.copyOfRange(tags, 1, tags.length - 1); // 첫,마지막 번째 태그를 제외한 배열 생성 (파일명 인덱스 및 거리값 제거)
return List.of(tags);
}
}

0 comments on commit 7d2b73b

Please sign in to comment.