0

I have this 4 task type of string:

ManagerTask
CoordinatorTask
BossTask
EmployTask

I need a method/regexp to split/separate these strings: The result should be:

Manager Task
Coordinator Task
Boss Task
Employ Task

Thank you!

3 Answers 3

2

Try the following:

function splitString(str){

  return str.substring(0,str.lastIndexOf("T"))+" "+str.substring(str.lastIndexOf("T"));

}


console.log(splitString("ManagerTask"));

Sign up to request clarification or add additional context in comments.

1 Comment

you response is fine but i can not use concatenation with eslint. Please can you change the code with template `` instead of concatenation? thank you
1

You can use Regex to match anything before task and the 'Task' and add space between these to matched groups:

const modify = text => text.replace(/(.+)(Task)/, '$1 $2');

console.log(modify('ManagerTask'));
console.log(modify('CoordinatorTask'));
console.log(modify('BossTask'));
console.log(modify('EmployTask'));

Also if you needed general solution for this issue you can use:

const modify = text => text
  // Find all capital letters and add space before them
  .replace(/([A-Z])/g, ' $1')
  // Remove the first space - otherwise result would be for example ' OfficeManagerTask'
  .substring(1);

console.log(modify('OfficeManagerTask'));
console.log(modify('AngryBossTask'));

console.log(modify('ManagerTask'));
console.log(modify('CoordinatorTask'));
console.log(modify('BossTask'));
console.log(modify('EmployTask'));

2 Comments

The best and shortest response. Thank you!
Consider using the updated answer for possible future cases.
1

var taskStrs = ['ManagerTask', 'CoordinatorTask', 'BossTask', 'EmployTask', "TaskMakerTask"];

function formatTaskName(task) {
  var lastTaskInd = task.lastIndexOf("Task");
  if(lastTaskInd == -1) {
    return task;
  }
  return task.substring(0,lastTaskInd) + " " + task.substring(lastTaskInd);
}

for(var i = 0; i < taskStrs.length; i++) {
  console.log(formatTaskName(taskStrs[i]));
}

1 Comment

@tomatilo, The jQuery has been removed, it was only to show the result of the Javascript function

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.