gpt4 book ai didi

perl - 使用 perl 表达式查找字符串中的最小模式

转载 作者:行者123 更新时间:2023-12-05 00:29:59 25 4
gpt4 key购买 nike

我试图在(2 个字符)字符串示例中找到最小模式:

enter code here

#!/usr/bin/perl
use warnings;
use strict;


my $str1;
$str1 = 'abbabbabbabbabb'; # abb is repeating
$str1 = 'abababababababa'; # ab is repeating
$str1 = 'abaaaabaaaabaaa'; # abaaa is repeating
$str1 = 'bbaabbaabbaabbaa'; # bbaa is repeating

它总是 2 个字符 'a' 和 'b' 并且总是有一个模式,
没有“a”或“b”的极端情况。
任何帮助是极大的赞赏。

谢谢迈克尔

最佳答案

my ($repeated_pattern) = $str1 =~ /^(.+?)\1+\z/s;

关于perl - 使用 perl 表达式查找字符串中的最小模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16615394/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com