All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lunatech.cmt.admin.command.Package.scala Maven / Gradle / Ivy

There is a newer version: 2.0.19
Show newest version
package com.lunatech.cmt.admin.command

import com.lunatech.cmt.Helpers.extractExerciseNr
def renumberExercise(exercise: String, exercisePrefix: String, newNumber: Int): String =
  val newNumberPrefix = f"${exercisePrefix}_$newNumber%03d_"
  val oldNumberPrefix =
    f"${exercisePrefix}_${extractExerciseNr(exercise)}%03d_"
  exercise.replaceFirst(oldNumberPrefix, newNumberPrefix)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy