2024-03-02 15:11:14 -05:00
|
|
|
# Regex Examples
|
|
|
|
|
|
|
|
## 1.20.4 - Paper (Default)
|
|
|
|
|
|
|
|
### Achievements
|
|
|
|
|
|
|
|
```re
|
|
|
|
^\[\d{2}:\d{2}:\d{2} INFO\]: (.*) has (made the advancement|completed the challenge) \[(.*)\]$
|
|
|
|
```
|
|
|
|
|
|
|
|
### Chat
|
|
|
|
|
|
|
|
```re
|
2024-03-02 15:18:32 -05:00
|
|
|
\[\d{2}:\d{2}:\d{2}\sINFO\]: (?:<|\[)(\w+)(?:>|\]) (.*)
|
2024-03-02 15:11:14 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
### Join
|
|
|
|
|
|
|
|
```re
|
|
|
|
^\[\d{2}:\d{2}:\d{2} INFO\]: ([^<\n]+) joined the game$
|
|
|
|
```
|
|
|
|
|
|
|
|
### Leave
|
|
|
|
|
|
|
|
```re
|
|
|
|
^\[\d{2}:\d{2}:\d{2} INFO\]: ([^<\n]+) left the game$
|
|
|
|
```
|
|
|
|
|
|
|
|
### Server
|
|
|
|
|
|
|
|
```re
|
|
|
|
^\[\d{2}:\d{2}:\d{2} INFO\]:(?: \[Not Secure\])? \[(?:Server|Rcon)\] (.*)
|
|
|
|
```
|
|
|
|
|
|
|
|
## 1.20.1 - Forge
|
|
|
|
|
|
|
|
### Achievements
|
|
|
|
|
|
|
|
```re
|
|
|
|
^\[\d{2}:\d{2}:\d{2}\] \[Server thread\/INFO\] \[minecraft\/MinecraftServer\]: (.*) has (made the advancement|completed the challenge) \[(.*)\]$
|
|
|
|
```
|
|
|
|
|
|
|
|
### Chat
|
|
|
|
|
|
|
|
```re
|
2024-03-02 15:18:32 -05:00
|
|
|
^\[\d{2}:\d{2}:\d{2}\] \[Server thread\/INFO\] \[minecraft\/MinecraftServer\]: (?:<|\[)(\w+)(?:>|\]) (.*)
|
2024-03-02 15:11:14 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
### Join
|
|
|
|
|
|
|
|
```re
|
|
|
|
^\[\d{2}:\d{2}:\d{2}\] \[Server thread\/INFO\] \[minecraft\/MinecraftServer\]: ([^<\n]+) joined the game$
|
|
|
|
```
|
|
|
|
|
|
|
|
### Leave
|
|
|
|
|
|
|
|
```re
|
|
|
|
^\[\d{2}:\d{2}:\d{2}\] \[Server thread\/INFO\] \[minecraft\/MinecraftServer\]: ([^<\n]+) left the game$
|
|
|
|
```
|
|
|
|
|
|
|
|
### Server
|
|
|
|
|
|
|
|
```re
|
|
|
|
^\[\d{2}:\d{2}:\d{2}\] \[Server thread\/INFO\] \[minecraft\/MinecraftServer\]: \[(?:Server|Rcon)\] (.*)
|
|
|
|
```
|