1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
package de.hysky.skyblocker.utils;
import java.util.OptionalDouble;
import java.util.OptionalInt;
import java.util.OptionalLong;
import java.util.regex.Matcher;
public class RegexUtils {
/**
* @return An OptionalLong of the first group in the matcher, or an empty OptionalLong if the matcher doesn't find anything.
*/
public static OptionalLong getLongFromMatcher(Matcher matcher) {
return getLongFromMatcher(matcher, matcher.hasMatch() ? matcher.end() : 0);
}
/**
* @return An OptionalLong of the first group in the matcher, or an empty OptionalLong if the matcher doesn't find anything.
*/
public static OptionalLong getLongFromMatcher(Matcher matcher, int startingIndex) {
if (!matcher.find(startingIndex)) return OptionalLong.empty();
return OptionalLong.of(Long.parseLong(matcher.group(1).replace(",", "")));
}
/**
* @return An OptionalInt of the first group in the matcher, or an empty OptionalInt if the matcher doesn't find anything.
*/
public static OptionalInt getIntFromMatcher(Matcher matcher) {
return getIntFromMatcher(matcher, matcher.hasMatch() ? matcher.end() : 0);
}
/**
* @return An OptionalInt of the first group in the matcher, or an empty OptionalInt if the matcher doesn't find anything.
*/
public static OptionalInt getIntFromMatcher(Matcher matcher, int startingIndex) {
if (!matcher.find(startingIndex)) return OptionalInt.empty();
return OptionalInt.of(Integer.parseInt(matcher.group(1).replace(",", "")));
}
/**
* @return An OptionalDouble of the first group in the matcher, or an empty OptionalDouble if the matcher doesn't find anything.
* @implNote Assumes the decimal separator is `.`
*/
public static OptionalDouble getDoubleFromMatcher(Matcher matcher) {
return getDoubleFromMatcher(matcher, matcher.hasMatch() ? matcher.end() : 0);
}
/**
* @return An OptionalDouble of the first group in the matcher, or an empty OptionalDouble if the matcher doesn't find anything.
* @implNote Assumes the decimal separator is `.`
*/
public static OptionalDouble getDoubleFromMatcher(Matcher matcher, int startingIndex) {
if (!matcher.find(startingIndex)) return OptionalDouble.empty();
return OptionalDouble.of(Double.parseDouble(matcher.group(1).replace(",", "")));
}
}
|