Full text search for "regex"
- omr1/404/01 . . . . 22 matches
#include <boost/regex.hpp> // Boost.Regex lib
boost::regex does_not_exist("해당 기사를 찾을 수 없습니다");
boost::regex expression("뉴스 홈</a> >"); // 카테고리 시작을 알리는 정규식
if(boost::regex_search(buffer, does_not_exist))
if(boost::regex_search(buffer, expression))
boost::regex_search(buffer, matches, expression);
boost::regex_search(buffer, matches, expression);
boost::regex does_not_exist("해당 기사를 찾을 수 없습니다");
boost::regex exp_post("<!--기사 제목-->"); // 기사 제목 구문
boost::regex exp_body("DCM_BODY-->"); // 기사 본문 구문
boost::regex expression;
if(boost::regex_search(buffer, does_not_exist))
if(boost::regex_search(buffer, exp_post))
boost::regex_search(buffer, matches, expression);
if(boost::regex_search(buffer, exp_body))
return boost::regex_split(back_inserter(l), s);
boost::regex expression;
sbuffer = boost::regex_replace(sbuffer, expression, " ", boost::format_all);
sbuffer = boost::regex_replace(sbuffer, expression, " ", boost::format_all);
sbuffer = boost::regex_replace(sbuffer, expression, " ", boost::format_all);
- C++/(C++0x)정규표현식 . . . . 13 matches
=== 매치 regex_match ===
std::tr1::regex rx(".*ABCD.*");
if (std::tr1::regex_match(buf, rx))
std::tr1::regex rx(".*<a class=\"select\".[^>]*>(.*)</a></li>");
if (std::tr1::regex_match(buf, matches, rx))
=== 대체 regex_replace ===
std::tr1::regex email_ascii("[0-9a-zA-Z]([-_.]?[0-9a-zA-Z])*@[0-9a-zA-Z]([-_.]?[0-9a-zA-Z])*.[a-zA-Z]{2,3}.*");
str = std::tr1::regex_replace(str, email_ascii, fmt);
std::tr1::regex clsid("\{[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}\}");
std::tr1::regex email("[0-9a-zA-Z]([-_.]?[0-9a-zA-Z])*@[0-9a-zA-Z]([-_.]?[0-9a-zA-Z])*.[a-zA-Z]{2,3}");
std::tr1::regex html_tag("<(\"[^\"]*\"|\'[^\']*\'|[^\'\">])*>");
std::tr1::regex href("href\s*=\s*(?:\"([^\"]*)\"|([^\']*)\'|([^\'\">\s]+))");
std::tr1::regex num_and_sign"[-0-9#&+%@=/\\:;.,\'\"^`~_|!\?*$#<>()]");
- Blog/2013-04 . . . . 4 matches
#include <regex>
regex rx;
rx.assign(s, regex_constants::icase);
if (regex_match(str, m, rx) == true)
- C/C++ . . . . 2 matches
a. ["/boost/regex/한글 추출"]
a. ["/boost/regex/실용 정규식"]
- C_Sharp/잘못된 파일 이름이나 경로 검색 삭제 . . . . 2 matches
string regexSearch = new string(Path.GetInvalidFileNameChars()) + new string(Path.GetInvalidPathChars());
Regex r = new Regex(string.Format("[{0}]", Regex.Escape(regexSearch)));
- HelpOnMacros . . . . 2 matches
||{{{[[PageList(regex)]]}}} || list of pages whose title matches the regex || HelpIndex ||
- HelpOnUserPreferences . . . . 2 matches
* '''[[GetText(Subscribed wiki pages (one regex per line))]]''': Enter '''`.*`''' to receive an email when any page in this Wiki changes (''not recommended'' for busy wikis), or enter the names of any individual pages, one per line. If you are familiar with '''regular expressions''', you may enter a regex expression to match the pages names of interest (.* matches all page names). With the '''[[GetText(Show icon toolbar)]]''' option checked, subscription to individual pages is made easy by clicking the envelope icon when viewing a page of interest.
- LocalKeywords . . . . 2 matches
C++ C++0x regex 정규표현식
C++ C++0x regex 정규표현식 템플리트
- irc logs/2013-2017 . . . . 2 matches
[23:41:46] 18<disjukr_talk18> 아 레긱스가 regex구나...
[23:50:24] 18<disjukr_talk18> js라서 못 쓴다 => http://xregexp.com/
- 정규표현식 . . . . 2 matches
[http://www.regexr.com/]
[http://regex101.com/] 매치된 것도 보여준다.
- C/C++/boost/regex/실용 정규식 . . . . 1 match
boost::regex href("href\s*=\s*(?:\"([^\"]*)\"|([^\']*)\'|([^\'\">\s]+))");
- C/C++/boost/regex/한글 추출 . . . . 1 match
하지만 그렇지 않다는 거!!! regex에서만 그런지 아님 다른 곳에서도 그런지 모르겠지만..
- MoniWikiACL . . . . 1 match
지정 방법은 {{{*}}}는 모든 액션을 가리키며, 페이지 이름은 regex가 가능합니다.
- irc logs/2011 . . . . 1 match
[13:46] -냐옹이- => !계산 !c !cpp !perl !py !py3 !rb !php !js !lua !bas !haskell !go !d !brainfuck !aheui !sql !regex | !퍼센트 !퍼센트2 !!퍼센트 !타로 !골라 !궁합 !로또 !랜덤고자 !고자순위 !대화 !!강화 | !도움말 !알람 !c2 !c3 !bmi !dday !부재 !대화 | !냐옹이나가 !인원 !자동옵 !자동반옵 !자동보이스 !@ !% !+ !인원수 |
- 유용한 Reference 사이트들 . . . . 1 match
[http://www.regexr.com/]
Found 15 matching pages out of 1201 total pages
You can also click here to search title.