儿童黑话

Posted superlizhao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了儿童黑话相关的知识,希望对你有一定的参考价值。

题目

在这道题目中,我们需要写一个函数,把传入的字符串翻译成“儿童黑话”。
儿童黑话的基本转换规则很简单,只需要把一个英文单词的第一个辅音字母或第一组辅音从移到单词的结尾,并在后面加上ay即可。在英语中,字母 a、e、i、o、u 为元音,其余的字母均为辅音。辅音从的意思是连续的多个辅音字母。
额外地,如果单词本身是以元音开头的,那只需要在结尾加上way。
在本题中,传入的单词一定会是英文单词,且所有字母均为小写
translatePigLatin("eight")应该返回 "eightway"
translatePigLatin("glove")应该返回 "oveglay"

代码一

function translatePigLatin(str) {
  if (isYuan(str.substr(0, 1))) {
    str += 'way'
  } else {
    let i = 1;
    while (!isYuan(str.substr(i, 1))) {
      i++;
    }
    str = str.substr(i) + str.substr(0, i) + 'ay'
  }
  return str;
}
function isYuan(c) {
  return c === 'a' || c === 'e' || c === 'i' || c === 'o' || c === 'u'
}
translatePigLatin("consonant");

代码一

function translatePigLatin(str) {
  if (isYuan(str.substr(0, 1))) {
    str += 'way'
  } else {
    str = str.replace(/^([^aeiou]+)(w*)/, '$2$1ay')
  }
  return str;
}
function isYuan(c) {
  return c === 'a' || c === 'e' || c === 'i' || c === 'o' || c === 'u'
}
translatePigLatin("consonant");

以上是关于儿童黑话的主要内容,如果未能解决你的问题,请参考以下文章

奇怪的语言又增加了,用互联网黑话写代码!

急需OI“黑话”的介绍

互联网公司忽悠员工的黑话,套路太深了!

如何混迹程序猿江湖,你得懂程序员黑话暗语!

豹厂黑话翻译官——敏捷开发篇

秒懂云通信:通信圈黑话大盘点