Clojure Regular Expressions re-find

2018-12-23 15:30 更新

re-find

返回字符串到模式的下一个正则表达式匹配(如果有),使用java.util.regex.Matcher.find()

语法

下面是 re-find 的使用示例:

(re-find pat str)

参数 − 'pat'是需要形成的模式。 'str'是需要根据模式找到文本的字符串。

返回值 − 如果基于输入字符串和模式找到匹配,则为字符串。

下面是 re-find 的使用示例:

(ns clojure.examples.example
   (:gen-class))

;; This program displays Hello World
(defn Example []
   (def pat (re-pattern "\\d+"))
   (println (re-find pat "abc123de")))
(Example)

输出

以上示例将输出以下结果:

123
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号