정규식문제
본문
resource/horizontal_maker/company1/index.html
여기서요 horizontal_maker/company1 이런식으로 만들고싶은데요 어떻게 해야하나요?
답변 2
구체적인 경우를 알 수는 없지만 질문만으로 보자면
$str = "resource/horizontal_maker/company1/index.html";
$str = preg_replace("/.+(horizontal_maker\/company1).+/", "$1", $str);
echo $str;
질문자 의도가 자바스크립트 기준으로 볼 때, 이런 코드가 될 것 같네요
var str = 'resource/horizontal_maker/company1/index.html';
var re = /resource\/([^\/]+)\/([^\/]+)\/index.html/;
str.replace(re, '$1/$2')
// => "horizontal_maker/company1"
답변을 작성하시기 전에 로그인 해주세요.