search

Home  >  Q&A  >  body text

正则表达式 - python正则,以指定字符串开头

判断一个字符串是否以「营业收入」开头,这样下对吗:

re.match(r'^营业收入', '营业收入是多少')
大家讲道理大家讲道理2837 days ago911

reply all(1)I'll reply

  • PHP中文网

    PHP中文网2017-04-17 17:53:10

    If it is not a complicated match, but just determines what a string starts with, why not use str.startswhith()?

    reply
    0
  • Cancelreply