Jump to content

Georgia James

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by Georgia James

  1. It looks like there are syntax errors in your regular expressions. Let me help you fix them: 1. The first regular expression has a syntax error. The corrected version should be: <input pattern='^@[^\s]+@[^@\s]+\.[^@\s]+$'> Changes made: - Removed the unnecessary square bracket after the `@`. - Corrected the pattern inside the square brackets to match any character that is not a whitespace. 2. The second regular expression also has a syntax error. The corrected version should be: <input pattern='^[a-zA-Z0-9]+[a-zA-Z0-9-\s,():\.'\[\]]*$'> Changes made: - Removed the unnecessary escape character before the single quote within the character class. - Escaped the dot (`.`) inside the character class to match a literal dot. - Removed the unnecessary backslash before the square bracket within the character class. Please replace your existing patterns with these corrected versions. If you encounter any further issues or have specific requirements, feel free to ask!
  2. Can someone help me identify image formats too? Which are common formats?
  3. I welcome everyone!! hope this community helps us a lot.
×
×
  • Create New...