RoboScript #1 - Implement Syntax Highlighting
Description:
RoboScript #1 - Implement Syntax Highlighting
Disclaimer
The story presented in this Kata Series is purely fictional; any resemblance to actual programming languages, products, organisations or people should be treated as purely coincidental.
About this Kata Series
This Kata Series is based on a fictional story about a computer scientist and engineer who owns a firm that sells a toy robot called MyRobot which can interpret its own (esoteric) programming language called RoboScript. Naturally, this Kata Series deals with the software side of things (I'm afraid Codewars cannot test your ability to build a physical robot!).
Story
You are a computer scientist and engineer who has recently founded a firm which sells a toy product called MyRobot which can move by receiving a set of instructions by reading a file containing a script. Initially you have planned the robot to be able to interpret JavaScript files for its movement instructions but you later decided that it would make MyRobot too hard to operate for most customers out there who aren't even computer programmers in the first place. For this reason, you have decided to invent a new (esoteric) scripting language called RoboScript which has a much simpler syntax so non-computer programmers can easily learn how to write scripts in this language which would enable them to properly operate MyRobot. However, you are currently at the initial stage of inventing this new Esolang. The first step to popularize this (esoteric) scripting language is naturally to invent a new editor for it which provides syntax highlighting for this language so your customers feel like they are writing a proper program when they are writing scripts for MyRobot.
Task
Your MyRobot-specific (esoteric) scripting language called RoboScript only ever contains the following characters: F
, L
, R
, the digits 0-9
and brackets ((
and )
). Your goal is to write a function highlight
which accepts 1 required argument code
which is the RoboScript program passed in as a string and returns the script with syntax highlighting. The following commands/characters should have the following colors:
F
- Wrap this command around<span style="color: pink">
and</span>
tags so that it is highlighted pink in our editorL
- Wrap this command around<span style="color: red">
and</span>
tags so that it is highlighted red in our editorR
- Wrap this command around<span style="color: green">
and</span>
tags so that it is highlighted green in our editor- Digits from
0
through9
- Wrap these around<span style="color: orange">
and</span>
tags so that they are highlighted orange in our editor - Round Brackets - Do not apply any syntax highlighting to these characters
For example:
highlight("F3RF5LF7"); // => "<span style=\"color: pink\">F</span><span style=\"color: orange\">3</span><span style=\"color: green\">R</span><span style=\"color: pink\">F</span><span style=\"color: orange\">5</span><span style=\"color: red\">L</span><span style=\"color: pink\">F</span><span style=\"color: orange\">7</span>"
And for multiple characters with the same color, simply wrap them with a single <span>
tag of the correct color:
highlight("FFFR345F2LL"); // => "<span style=\"color: pink\">FFF</span><span style=\"color: green\">R</span><span style=\"color: orange\">345</span><span style=\"color: pink\">F</span><span style=\"color: orange\">2</span><span style=\"color: red\">LL</span>"
Note that the use of <span>
tags must be exactly the same format as demonstrated above. Even if your solution produces the same visual result as the expected answers, if you miss a space betwen "color:"
and "green"
, for example, you will fail the tests.
Kata in this Series
- RoboScript #1 - Implement Syntax Highlighting
- RoboScript #2 - Implement the RS1 Specification
- RoboScript #3 - Implement the RS2 Specification
- RoboScript #4 - RS3 Patterns to the Rescue
- RoboScript #5 - The Final Obstacle (Implement RSU)
Similar Kata:
Stats:
Created | Jan 7, 2017 |
Published | Jan 7, 2017 |
Warriors Trained | 7510 |
Total Skips | 1332 |
Total Code Submissions | 22410 |
Total Times Completed | 3515 |
JavaScript Completions | 1045 |
PHP Completions | 257 |
C# Completions | 233 |
Python Completions | 1147 |
CoffeeScript Completions | 14 |
Rust Completions | 341 |
Java Completions | 382 |
Elixir Completions | 30 |
Ruby Completions | 62 |
Kotlin Completions | 146 |
Haskell Completions | 9 |
Total Stars | 268 |
% of votes with a positive feedback rating | 90% of 665 |
Total "Very Satisfied" Votes | 548 |
Total "Somewhat Satisfied" Votes | 103 |
Total "Not Satisfied" Votes | 14 |
Total Rank Assessments | 10 |
Average Assessed Rank | 6 kyu |
Highest Assessed Rank | 5 kyu |
Lowest Assessed Rank | 7 kyu |