我使用Android Studio制作了一个简单的应用程序。
示例:
n = 3,然后我应该删除每个第三个字符(它不是const而是来自输入)
我喜欢STACKOVERFLOW -----> I OV SACOVRFOW
我使用了https://stackoverflow.com/a/41813029方法,因为主题是相似的(当其他不是时)。
$id = (!empty($_POST['id']) ? $_POST['id'] : '');
但他的代码是错误的
错误:(66,43)错误:不兼容类型:意外返回值
实际上输出应该是
I OV SACOVRFOW& LETKEL
但是,我的idk怎么样。我有截止日期*哭。救命啊!
nb:原谅我的语法。
答案 0 :(得分:1)
替换这些行:
return result.toString();
//Show the result to edittext
edittexthasil.setText(result);
使用:
//Show the result to edittext
edittexthasil.setText(result.toString());