114k views
2 votes
What wildcards are accepted in acceptFrom?

1) Asterisk (*)
2) Question mark (?)
3) Percent sign (%)
4) Underscore (_)

1 Answer

5 votes

Final answer:

The wildcards accepted in the acceptFrom function are asterisk (*) and question mark (?).

Step-by-step explanation:

The wildcards that are accepted in the acceptFrom function are:

  1. Asterisk (*): It matches zero or more characters. For example, example.com/* will match any URL that starts with example.com/.
  2. Question mark (?): It matches a single character. For example, example.com/??? will match any URL that has three characters after example.com/.

User Biobirdman
by
8.3k points