/^.{9}A/
This command seems The letter A can be found in space 9, but how to add the other 2 letters to the regular expression?
/^.{8}[CFE]/< /pre>It should be {8} instead of {9}, because the way you have it, it will match the first 9 characters, and then match your letter at position 10.
div>I need to come up with a regular expression to find only the letters A, F or E in the 9th position of a given text. I am new to regex and did some searching and couldn't find any Similar response. What I have so far is:
/^.{9}A/This command seems to work The letter A is found on space 9, but how to add the other 2 letters to the regular expression?
You said you are looking for C, F or E, but you are looking for A in your example, so please put whatever you want to match in the parentheses Other letters, but what you are looking for is:
/^.{8}[CFE]/It should be {8} Instead of {9}, because the way you have it, it will match the first 9 characters and then match your letter at position 10.
WordPress database error: [Table 'yf99682.wp_s6mz6tyggq_comments' doesn't exist]SELECT SQL_CALC_FOUND_ROWS wp_s6mz6tyggq_comments.comment_ID FROM wp_s6mz6tyggq_comments WHERE ( comment_approved = '1' ) AND comment_post_ID = 5466 ORDER BY wp_s6mz6tyggq_comments.comment_date_gmt ASC, wp_s6mz6tyggq_comments.comment_ID ASC