{"id":1119113,"date":"2025-01-08T18:41:40","date_gmt":"2025-01-08T10:41:40","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/1119113.html"},"modified":"2025-01-08T18:41:43","modified_gmt":"2025-01-08T10:41:43","slug":"python%e5%a6%82%e4%bd%95%e6%8f%90%e5%8f%96%e5%ad%97%e7%ac%a6%e4%b8%b2%e7%9a%84%e5%ad%97%e6%af%8d","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/1119113.html","title":{"rendered":"python\u5982\u4f55\u63d0\u53d6\u5b57\u7b26\u4e32\u7684\u5b57\u6bcd"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/25082340\/922caec6-d02d-4cf6-8699-07ec207fe693.webp\" alt=\"python\u5982\u4f55\u63d0\u53d6\u5b57\u7b26\u4e32\u7684\u5b57\u6bcd\" \/><\/p>\n<p><p> <strong>\u63d0\u53d6\u5b57\u7b26\u4e32\u4e2d\u7684\u5b57\u6bcd\u53ef\u4ee5\u4f7f\u7528Python\u5185\u7f6e\u7684\u5b57\u7b26\u4e32\u5904\u7406\u65b9\u6cd5<\/strong>\u3001<strong>\u6b63\u5219\u8868\u8fbe\u5f0f<\/strong>\u3001<strong>\u5217\u8868\u89e3\u6790<\/strong>\u3002\u4f8b\u5982\uff0c\u4f7f\u7528Python\u5185\u7f6e\u7684\u5b57\u7b26\u4e32\u5904\u7406\u65b9\u6cd5\u53ef\u4ee5\u901a\u8fc7\u904d\u5386\u5b57\u7b26\u4e32\u5e76\u68c0\u67e5\u6bcf\u4e2a\u5b57\u7b26\u662f\u5426\u662f\u5b57\u6bcd\u6765\u63d0\u53d6\u5b57\u6bcd\u3002\u6b63\u5219\u8868\u8fbe\u5f0f\u5219\u63d0\u4f9b\u4e86\u4e00\u79cd\u66f4\u7b80\u6d01\u7684\u65b9\u5f0f\uff0c\u901a\u8fc7\u5339\u914d\u6a21\u5f0f\u6765\u63d0\u53d6\u5b57\u6bcd\u3002\u5217\u8868\u89e3\u6790\u662f\u4e00\u79cd\u7b80\u6d01\u800c\u9ad8\u6548\u7684\u65b9\u5f0f\uff0c\u53ef\u4ee5\u5728\u4e00\u884c\u4ee3\u7801\u4e2d\u5b8c\u6210\u63d0\u53d6\u5b57\u6bcd\u7684\u64cd\u4f5c\u3002\u63a5\u4e0b\u6765\uff0c\u5c06\u8be6\u7ec6\u4ecb\u7ecd\u5982\u4f55\u4f7f\u7528\u8fd9\u4e9b\u65b9\u6cd5\u6765\u63d0\u53d6\u5b57\u7b26\u4e32\u4e2d\u7684\u5b57\u6bcd\u3002<\/p>\n<\/p>\n<p><p>\u4e00\u3001\u4f7f\u7528\u5185\u7f6e\u5b57\u7b26\u4e32\u65b9\u6cd5<\/p>\n<\/p>\n<p><p>\u4f7f\u7528\u5185\u7f6e\u5b57\u7b26\u4e32\u65b9\u6cd5\u662f\u6700\u57fa\u672c\u7684\u65b9\u6cd5\u4e4b\u4e00\u3002\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528\u5b57\u7b26\u4e32\u7684<code>isalpha()<\/code>\u65b9\u6cd5\u6765\u68c0\u67e5\u4e00\u4e2a\u5b57\u7b26\u662f\u5426\u662f\u5b57\u6bcd\u3002\u901a\u8fc7\u904d\u5386\u5b57\u7b26\u4e32\u4e2d\u7684\u6bcf\u4e2a\u5b57\u7b26\uff0c\u5e76\u4f7f\u7528<code>isalpha()<\/code>\u65b9\u6cd5\u8fdb\u884c\u5224\u65ad\uff0c\u53ef\u4ee5\u63d0\u53d6\u51fa\u6240\u6709\u5b57\u6bcd\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def extract_letters(input_string):<\/p>\n<p>    result = &#39;&#39;.join([char for char in input_string if char.isalpha()])<\/p>\n<p>    return result<\/p>\n<p>input_string = &quot;Hello, World! 123&quot;<\/p>\n<p>letters = extract_letters(input_string)<\/p>\n<p>print(letters)  # \u8f93\u51fa: HelloWorld<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u4e0a\u9762\u7684\u4ee3\u7801\u4e2d\uff0c\u6211\u4eec\u5b9a\u4e49\u4e86\u4e00\u4e2a\u540d\u4e3a<code>extract_letters<\/code>\u7684\u51fd\u6570\uff0c\u8be5\u51fd\u6570\u63a5\u6536\u4e00\u4e2a\u5b57\u7b26\u4e32\u4f5c\u4e3a\u8f93\u5165\uff0c\u5e76\u8fd4\u56de\u4e00\u4e2a\u4ec5\u5305\u542b\u5b57\u6bcd\u7684\u5b57\u7b26\u4e32\u3002\u6211\u4eec\u4f7f\u7528\u5217\u8868\u89e3\u6790\u6765\u904d\u5386\u8f93\u5165\u5b57\u7b26\u4e32\u4e2d\u7684\u6bcf\u4e2a\u5b57\u7b26\uff0c\u5e76\u4f7f\u7528<code>isalpha()<\/code>\u65b9\u6cd5\u68c0\u67e5\u5b57\u7b26\u662f\u5426\u662f\u5b57\u6bcd\u3002\u5982\u679c\u662f\u5b57\u6bcd\uff0c\u6211\u4eec\u5c06\u5176\u6dfb\u52a0\u5230\u7ed3\u679c\u5217\u8868\u4e2d\uff0c\u6700\u7ec8\u5c06\u7ed3\u679c\u5217\u8868\u8fde\u63a5\u6210\u4e00\u4e2a\u5b57\u7b26\u4e32\u5e76\u8fd4\u56de\u3002<\/p>\n<\/p>\n<p><p>\u4e8c\u3001\u4f7f\u7528\u6b63\u5219\u8868\u8fbe\u5f0f<\/p>\n<\/p>\n<p><p>\u6b63\u5219\u8868\u8fbe\u5f0f\u662f\u4e00\u79cd\u5f3a\u5927\u7684\u6587\u672c\u5904\u7406\u5de5\u5177\uff0c\u53ef\u4ee5\u7528\u6765\u5339\u914d\u3001\u66ff\u6362\u548c\u63d0\u53d6\u5b57\u7b26\u4e32\u4e2d\u7684\u7279\u5b9a\u6a21\u5f0f\u3002\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528\u6b63\u5219\u8868\u8fbe\u5f0f\u6765\u5339\u914d\u5b57\u7b26\u4e32\u4e2d\u7684\u6240\u6709\u5b57\u6bcd\uff0c\u5e76\u5c06\u5176\u63d0\u53d6\u51fa\u6765\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import re<\/p>\n<p>def extract_letters(input_string):<\/p>\n<p>    result = re.findall(r&#39;[a-zA-Z]&#39;, input_string)<\/p>\n<p>    return &#39;&#39;.join(result)<\/p>\n<p>input_string = &quot;Hello, World! 123&quot;<\/p>\n<p>letters = extract_letters(input_string)<\/p>\n<p>print(letters)  # \u8f93\u51fa: HelloWorld<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u4e0a\u9762\u7684\u4ee3\u7801\u4e2d\uff0c\u6211\u4eec\u4f7f\u7528\u4e86<code>re<\/code>\u6a21\u5757\u4e2d\u7684<code>findall<\/code>\u51fd\u6570\uff0c\u8be5\u51fd\u6570\u63a5\u6536\u4e00\u4e2a\u6b63\u5219\u8868\u8fbe\u5f0f\u6a21\u5f0f\u548c\u4e00\u4e2a\u5b57\u7b26\u4e32\u4f5c\u4e3a\u8f93\u5165\uff0c\u5e76\u8fd4\u56de\u4e00\u4e2a\u5339\u914d\u8be5\u6a21\u5f0f\u7684\u6240\u6709\u5b50\u5b57\u7b26\u4e32\u5217\u8868\u3002\u6211\u4eec\u4f7f\u7528\u6b63\u5219\u8868\u8fbe\u5f0f\u6a21\u5f0f<code>[a-zA-Z]<\/code>\u6765\u5339\u914d\u6240\u6709\u5b57\u6bcd\uff0c\u7136\u540e\u5c06\u7ed3\u679c\u5217\u8868\u8fde\u63a5\u6210\u4e00\u4e2a\u5b57\u7b26\u4e32\u5e76\u8fd4\u56de\u3002<\/p>\n<\/p>\n<p><p>\u4e09\u3001\u4f7f\u7528\u5217\u8868\u89e3\u6790<\/p>\n<\/p>\n<p><p>\u5217\u8868\u89e3\u6790\u662f\u4e00\u79cd\u7b80\u6d01\u800c\u9ad8\u6548\u7684\u65b9\u6cd5\uff0c\u53ef\u4ee5\u5728\u4e00\u884c\u4ee3\u7801\u4e2d\u5b8c\u6210\u590d\u6742\u7684\u64cd\u4f5c\u3002\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528\u5217\u8868\u89e3\u6790\u6765\u63d0\u53d6\u5b57\u7b26\u4e32\u4e2d\u7684\u5b57\u6bcd\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def extract_letters(input_string):<\/p>\n<p>    return &#39;&#39;.join([char for char in input_string if char.isalpha()])<\/p>\n<p>input_string = &quot;Hello, World! 123&quot;<\/p>\n<p>letters = extract_letters(input_string)<\/p>\n<p>print(letters)  # \u8f93\u51fa: HelloWorld<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u4e0a\u9762\u7684\u4ee3\u7801\u4e2d\uff0c\u6211\u4eec\u4f7f\u7528\u5217\u8868\u89e3\u6790\u6765\u904d\u5386\u8f93\u5165\u5b57\u7b26\u4e32\u4e2d\u7684\u6bcf\u4e2a\u5b57\u7b26\uff0c\u5e76\u4f7f\u7528<code>isalpha()<\/code>\u65b9\u6cd5\u68c0\u67e5\u5b57\u7b26\u662f\u5426\u662f\u5b57\u6bcd\u3002\u5982\u679c\u662f\u5b57\u6bcd\uff0c\u6211\u4eec\u5c06\u5176\u6dfb\u52a0\u5230\u7ed3\u679c\u5217\u8868\u4e2d\uff0c\u6700\u7ec8\u5c06\u7ed3\u679c\u5217\u8868\u8fde\u63a5\u6210\u4e00\u4e2a\u5b57\u7b26\u4e32\u5e76\u8fd4\u56de\u3002<\/p>\n<\/p>\n<p><p>\u56db\u3001\u4f7f\u7528filter\u51fd\u6570<\/p>\n<\/p>\n<p><p><code>filter<\/code>\u51fd\u6570\u662fPython\u5185\u7f6e\u7684\u4e00\u4e2a\u51fd\u6570\uff0c\u7528\u4e8e\u8fc7\u6ee4\u5e8f\u5217\u4e2d\u7684\u5143\u7d20\u3002\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528<code>filter<\/code>\u51fd\u6570\u7ed3\u5408<code>isalpha<\/code>\u65b9\u6cd5\u6765\u63d0\u53d6\u5b57\u7b26\u4e32\u4e2d\u7684\u5b57\u6bcd\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def extract_letters(input_string):<\/p>\n<p>    return &#39;&#39;.join(filter(str.isalpha, input_string))<\/p>\n<p>input_string = &quot;Hello, World! 123&quot;<\/p>\n<p>letters = extract_letters(input_string)<\/p>\n<p>print(letters)  # \u8f93\u51fa: HelloWorld<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u4e0a\u9762\u7684\u4ee3\u7801\u4e2d\uff0c\u6211\u4eec\u4f7f\u7528<code>filter<\/code>\u51fd\u6570\u6765\u8fc7\u6ee4\u8f93\u5165\u5b57\u7b26\u4e32\u4e2d\u7684\u6bcf\u4e2a\u5b57\u7b26\uff0c\u53ea\u4fdd\u7559\u90a3\u4e9b\u6ee1\u8db3<code>isalpha<\/code>\u65b9\u6cd5\u7684\u5b57\u7b26\u3002\u7136\u540e\uff0c\u6211\u4eec\u5c06\u8fc7\u6ee4\u540e\u7684\u7ed3\u679c\u8fde\u63a5\u6210\u4e00\u4e2a\u5b57\u7b26\u4e32\u5e76\u8fd4\u56de\u3002<\/p>\n<\/p>\n<p><p>\u4e94\u3001\u4f7f\u7528\u81ea\u5b9a\u4e49\u51fd\u6570<\/p>\n<\/p>\n<p><p>\u9664\u4e86\u4e0a\u8ff0\u65b9\u6cd5\uff0c\u6211\u4eec\u8fd8\u53ef\u4ee5\u7f16\u5199\u81ea\u5b9a\u4e49\u51fd\u6570\u6765\u5b9e\u73b0\u5b57\u7b26\u4e32\u5b57\u6bcd\u7684\u63d0\u53d6\u3002\u4ee5\u4e0b\u662f\u4e00\u4e2a\u793a\u4f8b\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def is_letter(char):<\/p>\n<p>    return &#39;A&#39; &lt;= char &lt;= &#39;Z&#39; or &#39;a&#39; &lt;= char &lt;= &#39;z&#39;<\/p>\n<p>def extract_letters(input_string):<\/p>\n<p>    return &#39;&#39;.join([char for char in input_string if is_letter(char)])<\/p>\n<p>input_string = &quot;Hello, World! 123&quot;<\/p>\n<p>letters = extract_letters(input_string)<\/p>\n<p>print(letters)  # \u8f93\u51fa: HelloWorld<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u4e0a\u9762\u7684\u4ee3\u7801\u4e2d\uff0c\u6211\u4eec\u5b9a\u4e49\u4e86\u4e00\u4e2a\u540d\u4e3a<code>is_letter<\/code>\u7684\u81ea\u5b9a\u4e49\u51fd\u6570\uff0c\u8be5\u51fd\u6570\u63a5\u6536\u4e00\u4e2a\u5b57\u7b26\u4f5c\u4e3a\u8f93\u5165\uff0c\u5e76\u8fd4\u56de\u8be5\u5b57\u7b26\u662f\u5426\u662f\u5b57\u6bcd\u7684\u5e03\u5c14\u503c\u3002\u7136\u540e\uff0c\u6211\u4eec\u4f7f\u7528\u5217\u8868\u89e3\u6790\u6765\u904d\u5386\u8f93\u5165\u5b57\u7b26\u4e32\u4e2d\u7684\u6bcf\u4e2a\u5b57\u7b26\uff0c\u5e76\u4f7f\u7528<code>is_letter<\/code>\u51fd\u6570\u68c0\u67e5\u5b57\u7b26\u662f\u5426\u662f\u5b57\u6bcd\u3002\u5982\u679c\u662f\u5b57\u6bcd\uff0c\u6211\u4eec\u5c06\u5176\u6dfb\u52a0\u5230\u7ed3\u679c\u5217\u8868\u4e2d\uff0c\u6700\u7ec8\u5c06\u7ed3\u679c\u5217\u8868\u8fde\u63a5\u6210\u4e00\u4e2a\u5b57\u7b26\u4e32\u5e76\u8fd4\u56de\u3002<\/p>\n<\/p>\n<p><p>\u603b\u7ed3<\/p>\n<\/p>\n<p><p>\u63d0\u53d6\u5b57\u7b26\u4e32\u4e2d\u7684\u5b57\u6bcd\u6709\u591a\u79cd\u65b9\u6cd5\uff0c\u5305\u62ec\u4f7f\u7528\u5185\u7f6e\u5b57\u7b26\u4e32\u65b9\u6cd5\u3001\u6b63\u5219\u8868\u8fbe\u5f0f\u3001\u5217\u8868\u89e3\u6790\u3001<code>filter<\/code>\u51fd\u6570\u548c\u81ea\u5b9a\u4e49\u51fd\u6570\u3002\u6bcf\u79cd\u65b9\u6cd5\u90fd\u6709\u5176\u4f18\u70b9\u548c\u9002\u7528\u573a\u666f\uff0c\u53ef\u4ee5\u6839\u636e\u5177\u4f53\u9700\u6c42\u9009\u62e9\u5408\u9002\u7684\u65b9\u6cd5\u3002<strong>\u5185\u7f6e\u5b57\u7b26\u4e32\u65b9\u6cd5\u548c\u5217\u8868\u89e3\u6790\u9002\u7528\u4e8e\u7b80\u5355\u7684\u5b57\u6bcd\u63d0\u53d6\u64cd\u4f5c<\/strong>\uff0c<strong>\u6b63\u5219\u8868\u8fbe\u5f0f\u9002\u7528\u4e8e\u590d\u6742\u7684\u6a21\u5f0f\u5339\u914d\u548c\u63d0\u53d6<\/strong>\uff0c<strong><code>filter<\/code>\u51fd\u6570\u63d0\u4f9b\u4e86\u4e00\u79cd\u7b80\u6d01\u7684\u8fc7\u6ee4\u65b9\u5f0f<\/strong>\uff0c<strong>\u81ea\u5b9a\u4e49\u51fd\u6570\u53ef\u4ee5\u5b9e\u73b0\u66f4\u7075\u6d3b\u7684\u5904\u7406\u903b\u8f91<\/strong>\u3002\u5e0c\u671b\u672c\u6587\u80fd\u591f\u5e2e\u52a9\u4f60\u66f4\u597d\u5730\u7406\u89e3\u548c\u638c\u63e1\u63d0\u53d6\u5b57\u7b26\u4e32\u5b57\u6bcd\u7684\u65b9\u6cd5\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p> <strong>\u5982\u4f55\u4f7f\u7528Python\u63d0\u53d6\u5b57\u7b26\u4e32\u4e2d\u7684\u5b57\u6bcd\uff1f<\/strong><br \/>\u5728Python\u4e2d\uff0c\u53ef\u4ee5\u4f7f\u7528\u6b63\u5219\u8868\u8fbe\u5f0f\u6216\u5b57\u7b26\u4e32\u65b9\u6cd5\u6765\u63d0\u53d6\u5b57\u7b26\u4e32\u4e2d\u7684\u5b57\u6bcd\u3002\u4f8b\u5982\uff0c\u4f7f\u7528<code>re<\/code>\u6a21\u5757\u7684<code>findall<\/code>\u65b9\u6cd5\u53ef\u4ee5\u8f7b\u677e\u83b7\u53d6\u6240\u6709\u5b57\u6bcd\u3002\u793a\u4f8b\u4ee3\u7801\u5982\u4e0b\uff1a  <\/p>\n<pre><code class=\"language-python\">import re\n\ntext = &quot;Hello123! This is a test456.&quot;\nletters = re.findall(r&#39;[a-zA-Z]&#39;, text)\nprint(letters)  # \u8f93\u51fa\uff1a[&#39;H&#39;, &#39;e&#39;, &#39;l&#39;, &#39;l&#39;, &#39;o&#39;, &#39;T&#39;, &#39;h&#39;, &#39;i&#39;, &#39;s&#39;, &#39;i&#39;, &#39;s&#39;, &#39;a&#39;, &#39;t&#39;, &#39;e&#39;, &#39;s&#39;, &#39;t&#39;]\n<\/code><\/pre>\n<p>\u6b64\u5916\uff0c\u4f7f\u7528\u5217\u8868\u63a8\u5bfc\u5f0f\u4e5f\u80fd\u5b9e\u73b0\u76f8\u540c\u7684\u6548\u679c\u3002<\/p>\n<p><strong>\u662f\u5426\u53ef\u4ee5\u53ea\u63d0\u53d6\u5c0f\u5199\u5b57\u6bcd\u6216\u5927\u5199\u5b57\u6bcd\uff1f<\/strong><br \/>\u5f53\u7136\u53ef\u4ee5\uff01\u5728\u6b63\u5219\u8868\u8fbe\u5f0f\u4e2d\uff0c\u60a8\u53ef\u4ee5\u66f4\u6539\u5b57\u7b26\u8303\u56f4\u6765\u7b5b\u9009\u5b57\u6bcd\u3002\u4f8b\u5982\uff0c\u82e5\u53ea\u60f3\u63d0\u53d6\u5c0f\u5199\u5b57\u6bcd\uff0c\u53ef\u4ee5\u4f7f\u7528<code>[a-z]<\/code>\uff0c\u800c\u53ea\u63d0\u53d6\u5927\u5199\u5b57\u6bcd\u5219\u4f7f\u7528<code>[A-Z]<\/code>\u3002\u793a\u4f8b\u4ee3\u7801\u5982\u4e0b\uff1a  <\/p>\n<pre><code class=\"language-python\">lowercase_letters = re.findall(r&#39;[a-z]&#39;, text)\nuppercase_letters = re.findall(r&#39;[A-Z]&#39;, text)\n<\/code><\/pre>\n<p><strong>\u63d0\u53d6\u5b57\u6bcd\u540e\u5982\u4f55\u5c06\u5b83\u4eec\u7ec4\u5408\u6210\u4e00\u4e2a\u5b57\u7b26\u4e32\uff1f<\/strong><br \/>\u63d0\u53d6\u5b57\u6bcd\u540e\uff0c\u53ef\u4ee5\u4f7f\u7528<code>join<\/code>\u65b9\u6cd5\u5c06\u5b83\u4eec\u7ec4\u5408\u6210\u4e00\u4e2a\u65b0\u7684\u5b57\u7b26\u4e32\u3002\u8fd9\u6837\uff0c\u60a8\u53ef\u4ee5\u8f7b\u677e\u5730\u5c06\u63d0\u53d6\u7684\u5b57\u6bcd\u62fc\u63a5\u5728\u4e00\u8d77\u3002\u793a\u4f8b\u4ee3\u7801\u5982\u4e0b\uff1a  <\/p>\n<pre><code class=\"language-python\">combined_letters = &#39;&#39;.join(letters)\nprint(combined_letters)  # \u8f93\u51fa\uff1aHelloThisisatest\n<\/code><\/pre>\n<p>\u8fd9\u79cd\u65b9\u5f0f\u4e0d\u4ec5\u7b80\u6d01\uff0c\u800c\u4e14\u7075\u6d3b\uff0c\u9002\u7528\u4e8e\u4e0d\u540c\u573a\u666f\u7684\u9700\u6c42\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"\u63d0\u53d6\u5b57\u7b26\u4e32\u4e2d\u7684\u5b57\u6bcd\u53ef\u4ee5\u4f7f\u7528Python\u5185\u7f6e\u7684\u5b57\u7b26\u4e32\u5904\u7406\u65b9\u6cd5\u3001\u6b63\u5219\u8868\u8fbe\u5f0f\u3001\u5217\u8868\u89e3\u6790\u3002\u4f8b\u5982\uff0c\u4f7f\u7528Python\u5185\u7f6e\u7684 [&hellip;]","protected":false},"author":3,"featured_media":1119118,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[37],"tags":[],"acf":[],"_links":{"self":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1119113"}],"collection":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/comments?post=1119113"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1119113\/revisions"}],"predecessor-version":[{"id":1119121,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1119113\/revisions\/1119121"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/1119118"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=1119113"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=1119113"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=1119113"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}