Skip to content

Commit

Permalink
[fix] #181 장소 검증 조건 변경에 따른 수정 진행 (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
2hyunjinn authored Jan 23, 2025
2 parents c4e16b6 + acd95d7 commit 6d173cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@Slf4j
public class LocationValidator {

private static final Pattern pattern = Pattern.compile("^[가-힣a-zA-Z\s]+$");
private static final Pattern pattern = Pattern.compile("^[가-힣a-zA-Z\s0-9]+$");

public void isLocationValid(final String value){
log.info("now Location value is : {}", value);
Expand Down

0 comments on commit 6d173cb

Please sign in to comment.