0

Any ideas why this regex doesn't match everything from my string?
(I want it to match discord.gg/XUGswJ) regex match

Lmao 123
  • 111
  • 1
  • 8

1 Answers1

1

[a-z] means lowercase letters. You probably want [a-zA-Z] to include uppercase.

wjandrea
  • 28,235
  • 9
  • 60
  • 81