REPL: uppercase strings have different colors than lowercase
See original GitHub issuescala> "lowercase"
res16: String = lowercase
scala> "UPPERCASE"
res17: String = UPPERCASE
scala> "lower UPPER lower"
res18: String = lower UPPER lower
Issue Analytics
- State:
- Created 7 years ago
- Comments:10 (10 by maintainers)
Top Results From Across the Web
java - Color words in sentence that are uppercase different color
I am a beginner with java but this is what I have come up with so far. The problem is that it is...
Read more >Solved: How to check for upper-case strings - Alteryx Community
- This works because if text A starts with text B; AND text B starts with text A, then they are equal. But...
Read more >6 Basic String Manipulations | Handling Strings with R
Besides creating and printing strings, there are a number of very handy ... The function tolower() converts any upper case characters into lower...
Read more >uppercase - Replit
You can use .upper() for converting a string into all uppercase. You can also use .lower() to convert it all to lowercase. please...
Read more >4 ways for changing case in Excel - Ablebits
In this article I'd like to tell you about different ways to change Excel uppercase to lowercase or proper case. You'll learn how...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think the correct thing to do here is to print the string with
"
around it, as a bonus this means that the output of the repl is valid Scala, but it also means that we have to escape our output, e.g.I think that’s a trade-off worth making
Oh ok. I think all the non-derivation parts of the library are great:
Iterator[String]
instead of a plainString
(though maybe it should return ageny.Generator
at some point)All that stuff is nice 😃 and there to use. If we could hook it up to some non-gnarly derivation mechanism we’d be all set