Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

7
  • The problem is that the prefix is sequenced (0000, 0001, 0002, etc), and I don't seem to be able to tell Bridge to just delete the first 6 characters. I'm not sure what ^\d{4} is, but I figured maybe that was a workaround to do exactly what I just said--so I tested it (^\d{6} in my case, for 6 characters), but it did not change anything. Commented Mar 27, 2019 at 21:40
  • ^ means the start of the string, \d means any numeric character (0-9) and {4} is a quantifier - how many times it's repeated. Commented Mar 27, 2019 at 21:42
  • @Sabina can you do it with {6} and then click on Preview and take a screenshot and upload that here? Commented Mar 27, 2019 at 21:43
  • @Sabina make sure you also selected the Use Regular Expression box when you entered that regex string. Commented Mar 27, 2019 at 21:49
  • Don't seem to be able to add pictures to comments, so I edited my original question to include a screenshot. Thanks! Commented Mar 27, 2019 at 21:57