gpt4 book ai didi

正则表达式在整数之前提取字符串

转载 作者:行者123 更新时间:2023-12-05 03:01:33 24 4
gpt4 key购买 nike

我有一包数字说:

  • d123sd
  • dds123
  • 123ss
  • dd542334ssdf
  • fsd54345ff

完整的数据总是string int string,我用它把它分成每组

string1 = ^(.*?)\D+
int2 = (\d+)
string3 = ([a - zA - Z] *$)

但是如果数据只有 int string(示例 123ss),我总是会出错,因为它的变量 string1 读取第一个数字,有人能告诉我哪里出错了吗?

最佳答案

要匹配字符串开头的 0 个或多个非数字字符,您需要将 string1 定义为

string1 = ^(\D*)

它将在字符串 (^) 的开头捕获 0 个或多个非数字 (\D) 字符。

整个字符串模式可以看起来像

^(\D*)(\d+)(\D*)$

参见 Regulex graph :

enter image description here

另见 regex demo .

关于正则表达式在整数之前提取字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55628972/

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