我正在尝试编写一个接受以下内容的正则表达式:
s#.#
f#.#
其中 # 可以是任意大小的整数(实际上是小数,前面有 s 或 f)。我也需要这个来接受其他任何事情。所以如果它是这样的:
As#.# would not be accepted because there's an A before the s
s#.#X would not be accepted because there's an X after the decimal.
总会有一个 s 或一个 f 开始,然后是一个数字、一个句点和另一个数字。所有这些部分都是必需的,数字可以是任意大小和任意数量的整数。