How to get the first word in the string

后端 未结 6 826
梦毁少年i
梦毁少年i 2020-12-05 04:07

text is :

WYATT    - Ranked # 855 with    0.006   %
XAVIER   - Ranked # 587 with    0.013   %
YONG     - Ranked # 921 with    0.006   %
YOUNG    - Ranked # 8         


        
6条回答
  •  自闭症患者
    2020-12-05 04:35

    Use this regex

    ^\w+
    

    \w+ matches 1 to many characters.

    \w is similar to [a-zA-Z0-9_]

    ^ depicts the start of a string


    About Your Regex

    Your regex (.*)?[ ] should be ^(.*?)[ ] or ^(.*?)(?=[ ]) if you don't want the space

提交回复
热议问题