But I would like receive only the FQDN (without a collon and a port number) . Probably I can use for that the “Regex” field but I can’t prepare correct regex pattern.
[a-zA-Z0-9\.]+ matches lower and uppercase letters, numbers and dots. The brackets around them create a capture group so that it only returns the part that matches.