강의

멘토링

커뮤니티

Inflearn Community Q&A

m6488j5166's profile image
m6488j5166

asked

readable_code::CMake - Create a Fancy C++ Project

Control Statements

MATCHES - 특정 패턴 포함

Written on

·

415

0

26분 45초에 다른 메시지를 보고 되었다고 오해하신거 같아요

^[a-z]{3}.txt$

abc.txt도 되지 않고 a3.txt도 되지 않는데 어떨때 True인가요?

c++cmake소프트웨어-설계

Answer 2

0

저는 [a-z][3].txt$ 요렇게 해야 동작하던데 {3}과 [3]이 컴퓨터 마다 인식 차이가 있나요?

0

captaindev님의 프로필 이미지
captaindev
Instructor

죄송합니다. 제가 오기술을 했네요...!

[a-z]{3}.txt$으로 진행하셔야

해당 내용이 동작합니다.

m6488j5166's profile image
m6488j5166

asked

Ask a question