DEV Community

zhuang quan
zhuang quan

Posted on

Fuzzy-align CN/EN field names

I kept running into this: userName vs 用户名称 won't map.

userName vs 用户名称 across dozens of tables — mapping by hand was soul-crushing, and mismatches slipped into production.

Ended up wrapping a small reusable workflow around it — Fuzzy-align CN/EN field names. The part that actually saved me time: Fuzzy match + alias mapping.

Concretely, it:

  • fuzzy-matches userName/用户名称
  • accumulating alias map

Put it (and ~20 other similar ones) in a repo in case it helps someone: https://github.com/shuangying0001-beep/awesome-workbuddy-skills

Top comments (0)