Delete a dot and a number at the end of a character string

后端 未结 3 1098
孤街浪徒
孤街浪徒 2021-01-02 07:43

How do I delete a number (one or two digits in length) and the dot directly preceding it each time it occurs at the end of a string within a specific variable in R

3条回答
  •  被撕碎了的回忆
    2021-01-02 08:22

    The best way to do this is with a regular expression replacement statement. How you do this depends on the language that you are using.

    Here's the regex pattern you need to identify the trailing numbers

    (.\d{1,2})^

    And you should simply replace the matches with ""

提交回复
热议问题