{"id":1662,"date":"2022-01-24T21:52:14","date_gmt":"2022-01-25T05:52:14","guid":{"rendered":"https:\/\/fighternan.com\/?p=1662"},"modified":"2022-01-24T21:55:23","modified_gmt":"2022-01-25T05:55:23","slug":"string-utilities","status":"publish","type":"post","link":"https:\/\/nanzhou.cc\/index.php\/2022\/01\/24\/string-utilities\/","title":{"rendered":"String Utilities"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code lang=\"cpp\" class=\"language-cpp\">vector&lt;string> Split(const string &amp;s, char delim) {\n  vector&lt;string> result;\n  stringstream ss(s);\n  string item;\n\n  while (getline(ss, item, delim)) {\n    result.push_back(item);\n  }\n\n  return result;\n}\n\n\nvector&lt;string> <meta charset=\"utf-8\">Split (string s, string delimiter) {\n    size_t pos_start = 0, pos_end, delim_len = delimiter.length();\n    string token;\n    vector&lt;string> res;\n\n    while ((pos_end = s.find (delimiter, pos_start)) != string::npos) {\n        token = s.substr (pos_start, pos_end - pos_start);\n        pos_start = pos_end + delim_len;\n        res.push_back (token);\n    }\n\n    res.push_back (s.substr (pos_start));\n    return res;\n}<\/code><\/pre>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6,5],"tags":[],"class_list":["post-1662","post","type-post","status-publish","format-standard","hentry","category-c","category-proglang"],"_links":{"self":[{"href":"https:\/\/nanzhou.cc\/index.php\/wp-json\/wp\/v2\/posts\/1662","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nanzhou.cc\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nanzhou.cc\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nanzhou.cc\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nanzhou.cc\/index.php\/wp-json\/wp\/v2\/comments?post=1662"}],"version-history":[{"count":4,"href":"https:\/\/nanzhou.cc\/index.php\/wp-json\/wp\/v2\/posts\/1662\/revisions"}],"predecessor-version":[{"id":1668,"href":"https:\/\/nanzhou.cc\/index.php\/wp-json\/wp\/v2\/posts\/1662\/revisions\/1668"}],"wp:attachment":[{"href":"https:\/\/nanzhou.cc\/index.php\/wp-json\/wp\/v2\/media?parent=1662"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nanzhou.cc\/index.php\/wp-json\/wp\/v2\/categories?post=1662"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nanzhou.cc\/index.php\/wp-json\/wp\/v2\/tags?post=1662"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}