We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de15a64 commit 54c4890Copy full SHA for 54c4890
README.md
@@ -38,19 +38,19 @@ dependencies {
38
###extract single data
39
40
````java
41
- String followers = Extractors.on(baseHtml)
42
- .extract(new SelectorExtractor("div.followers"))
43
- .with(new RegexExtractor("\\d+"))
44
- .asString();
+String followers = Extractors.on(baseHtml)
+ .extract(new SelectorExtractor("div.followers"))
+ .with(new RegexExtractor("\\d+"))
+ .asString();
45
````
46
47
or use static method
48
49
50
51
- .extract(selector("div.followers"))
52
- .with(regex("\\d+"))
53
+ .extract(selector("div.followers"))
+ .with(regex("\\d+"))
54
55
more method
56
0 commit comments