# Remove Extra Track

**URL:** https://community.mp3tag.de/t/remove-extra-track/12803
**Category:** Support
**Created:** [December 11, 2011, 7:07pm UTC](https://community.mp3tag.de/t/remove-extra-track/12803 "2011-12-11T19:07:32Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![grn2012](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/g/df788c/32.png) [@grn2012](https://community.mp3tag.de/u/grn2012)
#### Post date: [December 11, 2011, 7:07pm UTC](https://community.mp3tag.de/t/remove-extra-track/12803/1 "2011-12-11T19:07:32Z")

</div>

This incredibly simple expressions removes extra tracks of the format "/track."

**Field:** TRACK

**Regular expression:** /\d+

**Replace matches with:**

---

<div class="post-metadata">

### Author: ![stevehero](https://community.mp3tag.de/user_avatar/community.mp3tag.de/stevehero/32/337_2.png) [@stevehero](https://community.mp3tag.de/u/stevehero)
#### Post date: [December 11, 2011, 7:37pm UTC](https://community.mp3tag.de/t/remove-extra-track/12803/2 "2011-12-11T19:37:16Z")

</div>

This can also do it:  
_Action type:_ **Replace with regular expression**  
_Field:_ **TRACK**  
_Regular expression:_ **^(\d+)/\d+$**  
_Replace matches with:_ **$1**

[] case-sensitive comparison

Note the ' **^**' and ' **$**' anchor the search string to the beginning and the end.  
The '**(**\d+**)**' captures whatevers inside.  
And _Replace matches with:_ **$1** replaces whatever is inside that.

---

<div class="post-metadata">

### Author: ![system](https://community.mp3tag.de/uploads/default/original/2X/c/ce7035d426cb755a7916793326d23b465222a407.png) [@system](https://community.mp3tag.de/u/system)
#### Post date: [February 9, 2026, 12:23pm UTC](https://community.mp3tag.de/t/remove-extra-track/12803/3 "2026-02-09T12:23:30Z")

</div>


