Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

One way of doing this is dividing the incoming username into groups by using this expression:

(.*)(_)(.*)(รง@@)(.*)

Here:

  • the parentheses are creating the groups

  • period "." indicates any symbol

  • star "*" means from 0 to many occurrences of the preceding symbol

...