First String,Second,1.22,3.4

Second,More Text,1.555555,2.2220

Third,x,3,124

Find: \s{2,10} Replace: ,

Bryan Ballif (University of Vermont)

Aaron Ellison (Harvard Forest)

Sydne Record (Bryn Mawr)

Find: (\w+),(\s)(\w+),(\s)(\w+.*) Replace: \3\2\1\4(\5)

0001 Georgia Horseshoe.mp3

0002 Billy In The Lowground.mp3

0003 Cherokee Shuffle.mp3

0004 Walking Cane.mp3

Find: \s(\d{4}) Replace: \n\1

Georgia Horseshoe_0001.mp3

Billy In The Lowground_0002.mp3

Cherokee Shuffle_0003.mp3

Walking Cane_0004.mp3

Find: (\d{4})\s(.+)(\.\w{3}) Replace: \2_\1\3

C_pennsylvanicus,44

C_herculeanus,3

M_punctiventris,4

L_neoniger,55

Find: (\w)\w+,(\w+),\d+\.\d(,\d+) Replace: \1_\2\3

C_penn,44

C_herc,3

M_punc,4

L_neon,55

Find: (\w)\w+,(\w{4})\w+,\d+\.\d(,\d+) Replace: \1_\2\3

Campen, 44, 10.2

Camher, 3, 10.5

Myrpun, 4, 12.2

Lasneo, 55, 3.3

Find: (\w{3})\w+,(\w{3})\w+,(\d+\.\d),(\d+) Replace: \1\2, \4, \3