Oleg0341 Asked: 2024-11-11 04:52:19 +0800 CST 无法使用正则表达式拆分字符串 4 我想同时拆分两个包含“apple”和“apples”的句子。我尝试使用正则表达式“apple*”或“apple?”。但是它不起作用。我在第二句的第二部分看到了“s”。正则表达式或拆分有什么问题? $spl = '(apple*)' 'This apple for you','These apples for you' | % {$_ -split $spl} regex