New: regexpAll contenthive-129948hive-196917krzzanhive-183959hive-185836hive-166405photographyhive-150122steemhive-180932hive-101145hive-183397hive-144064uncommonlabhive-188619hive-184714bitcoinkrsuccesshive-145157hive-103599hive-179660hive-193637hive-193186hive-180301TrendingNewHotLikersseobangnim (25)in mysql • 7 years ago[MySQL] 정규식을 이용한 검색 regexpregexp 란? like 검색과는 달리 정규식을 이용한 검색 방식을 말한다. regexp는 우리에게 like보다 좀 더 다양한 검색을 할 수 있도록 도움을 준다. (관련 URL : ) regexp 를 이용한 검색의 예제 select * from test where name regexp '가'zavz9t (50)in php • 7 years ago[PHP] Replace multiple spaces by one (by RegExp)Hello my friends! Today, during parsing websites, I faced with such price string: " 20,00 esoso (25)in powershell • 7 years agoDistinguishedName regexpWhen writing powershell scritps that need to deal with Active Directory you'll, eventually, have to work with distinguishedNames. Finding the domain or the OU in which the object is useful in most…souplee (25)in programming • 7 years ago정규표현식 1 [기본적인 사용 방법]오늘은 거의 모든 언어에서 통용되는 검색을 하기 위한 언어와 비슷한 정규표현식에 대해서 간단하게 알아 보도록 하겠습니다. 위를 보면 Welcome을 검색했는데 welcome앞에 /가 있고 뒤에 /와 g가 있는데, 앞뒤의 /와 /는 그 안에 들어 있는 것이 정규표현식임을 나타내 주는 것이고 G 는 Global로 여러 개가 감지되었으면 그것을…