MATLAB 循环子字符串

Posted ʚVVcatɞ

tags:

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

题目描述

输入一个字符串,取循环子字符串

如abcdef, 给定起始位置及长度,取子字符串, 4,5 ,则输出defab

输入

第1行:一个字符串
第2行:整数,表示子字符串的起始位置
第3行:整数,表示子字符串的长度 (长度小于等于原字符串长度)

输出

一个结果字符串
样例输入 Copy

abcdefg
3
7

样例输出 Copy

cdefgab

程序代码

str = input('','s');
start = input('');
step_size = input('');
 
i = 0;
result = '';
redundant = length(str) - start;
while true
    i = i + 1;
    c = str(start);
    result = strcat(result, c);
    start = start + 1;
    if start > length(str) & redundant > 0
        start = 1;
    end
    
    if i == step_size
        break;
    end
end
disp(result);

以上是关于MATLAB 循环子字符串的主要内容,如果未能解决你的问题,请参考以下文章

新建一直循环子线程,怎样关闭循环子线程,contains a path separator

H3 BPM循环子表相关方法介绍

for循环子命令中的bash变量扩展[重复]

如何从 React JS 中父组件上的对象循环子组件中的项目

带有游标参数 (LOOP FETCH) 和 For 循环子查询的 PL/SQL 查询出错

POJ-2406Power Strings-KMP+定理