I have a set of data that looks like the following:
Input:
| Project Name | Open? |
| 1000000423 | Yes |
| 2021005821 | No |
| 2022-MF-TM-328 | Yes |
I wish to remove all rows in which the Project is not a 10 digit value.
Output:
| Project Name | Open? |
| 1000000423 | Yes |
| 2021005821 | No |
I have tried the following using the filer tool, but it did not work. I have tried a few different methods with no success.

Next, after filtering the data, I want to add two letters PR infront of the project name values to make it look like the following:
| Project Name | Open? |
| PR1000000423 | Yes |
| PR2021005821 | No |
Follow up question, where can I practice regular expression problems online? I want to get better at them. Thank you.