如何在 Sublime Text 中使用通配符进行替换操作?

如何在 Sublime Text 中使用通配符进行替换操作?

我有 100 个这样的物体:

{
  "_id": "5eb45c2738ae2549000ddb09",
  "category": "Vel aliquid quas",
  "title": "Incidunt incidunt quae ut et in provident ut est rerum."
},
{
  "_id": "5eb45c2738ae2549000ddb09",
  "category": "Some text",
  "title": "Some title"
{

在 Sublime Text 3 中,我该如何将其替换为:

{
  "_id": "5eb45c2738ae2549000ddb09",
  "category": "5e99e61b3b7733f59053e49a,
  "title": "Incidunt incidunt quae ut et in provident ut est rerum."
},
{
  "_id": "5eb45c2738ae2549000ddb09",
  "category": "5e99e61b3b7733f59053e49a",
  "title": "Some title"
{

答案1

  • 寻找:category":\s+"(.*?)
  • 代替:"category": "your text"

相关内容