Regex match everything up to first period

前端 未结 3 683
被撕碎了的回忆
被撕碎了的回忆 2020-12-17 02:51

Trying to get a lazy regex match of everything up until the first period of a sentence.

e.g. Just want to get \"jack and jill.\" from this sentence:
\"jack and j

3条回答
  •  天涯浪人
    2020-12-17 03:22

    /^([^.]+)/
    

    Let's break it down,

    • ^ is the newline anchor

    • [^.] this matches any character that's not a period

    • \+ to take until a period

    And the expression is encapsulated with () to capture it.

提交回复
热议问题