Skip to content

Instantly share code, notes, and snippets.

View ghusta's full-sized avatar

Guillaume Husta ghusta

  • Toulouse, France
  • 22:01 (UTC +02:00)
  • X @ghusta
View GitHub Profile
@ghusta
ghusta / MyRegexTest.java
Created October 5, 2022 21:31
Testing Java regex with SemVer example (named capturing group)
import org.junit.jupiter.api.Test;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import static org.junit.jupiter.api.Assertions.fail;
class MyRegexTest {
@Test