Caeser Cipher JavaScript

时间:2017-11-09 02:50:03

标签: javascript fromcharcode

我想我已经接近搞清楚了。

对象是取一串"加密"字符并将它们解密为实际的单词。也许我的代码现在不是很优雅,我会到达那里,但我可以得到开头" str =" SERR PBQR PNZC"'使用charCodeAt()返回正确的ASCII码,根据需要添加或减去13,并将其连接到strArray中 - 我知道,它不是一个数组。但是我不能让strArray成为一个数组,所以我可以把它传递给String.fromCharCode(null,strArray);让它返回正确的解密文本。

我的代码如下:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.pccw.newmobileclient.ui.work_list.WorkListActivity">

    <android.support.constraint.Guideline
        android:id="@+id/guideline10"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_percent="0.2" />

</android.support.constraint.ConstraintLayout>

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

好的,所以,下面返回正确的字符串,除了最后的空格;这不允许我完成挑战。

onto