Share Link
Copied to clipboard
Embed on Your Page
Copied to clipboard
We Stand with Ukraine
<no name> by Anonymous
Unicode String Replace At Issue
Lets examine string "🎢πŸ”₯Γ©-"
🎢πŸ”₯Γ©- is length of 6, but there are ONLY 4 characters! Why not len=4?
🎢πŸ”₯ are double byte UNICODE characters (> \u10000) of width or len 2 each 
🎢πŸ”₯Γ©- below will replace space after lasting character '-' (position 4) with a sub using most common techniques seen online

🎢πŸ”₯X- using ReplaceAtCharArray
in 1,295 ticks.
🎢πŸ”₯Y- using ReplaceAtLinq
in 25,679 ticks.
🎢πŸ”₯Z- using ReplaceAtStringManipulation
in 1,133 ticks.
🎢πŸ”₯A- using ReplaceAtSubstring
in 1,579 ticks.
🎢πŸ”₯W- using SubsituteStringStringBuilder
in 1,387 ticks.
🎢πŸ”₯Γ©-4using UnicodeReplaceAt
in 4,633 ticks.

UnicodeReplaceAt replaces properly at position 4 in zero based index string

0πŸ”₯Γ©- using UnicodeReplaceAt(0, '0') in 45 ticks.
🎢1Γ©- using UnicodeReplaceAt(1, '1') in 14 ticks.
🎢πŸ”₯2- using UnicodeReplaceAt(2, '2') in 14 ticks.
🎢πŸ”₯Γ©3 using UnicodeReplaceAt(3, '3') in 36 ticks.
🎢πŸ”₯Γ©-4using UnicodeReplaceAt(4, '4') in 11 ticks.
🎢πŸ”₯Γ©- using UnicodeReplaceAt(5, '5') - this is beyond end of string, so return orginal string in 11 ticks.


 FAST testing.


🎢πŸ”₯😊-aΜ„ΜˆbcΜ§ using UnicodeReplaceAtFast(5, '😊') - cool but still O(100) more :( in 7,253 ticks.
 in 1 ticks.
😊 using UnicodeReplaceAtFast(1, '😊') - bounds check - 1 char in 22 ticks.
 in 0 ticks.
aΜ„ using UnicodeReplaceAtFast(0, '😊') - bounds check - wrong index in 12 ticks.


 FASTEST testing.


🎢πŸ”₯Γ©-😊bcΜ§ using UnicodeReplaceAtFastest(5, '😊') - cool but still O(100) more than string.Replace :( in 2,424 ticks.
 in 1 ticks.
😊 using UnicodeReplaceAtFastest(1, '😊') - bounds check - 1 char in 23 ticks.
 in 0 ticks.
aΜ„ using UnicodeReplaceAtFastest(0, '😊') - bounds check - 0 index in 12 ticks.
 in 0 ticks.
😊 using UnicodeReplaceAtFastest(5, '😊') - bounds check - after end index in 12 ticks.
 in 0 ticks.
🎢πŸ”₯Γ©-aΜ„ΜˆπŸ˜ŠcΜ§ using UnicodeReplaceAtFastest(6, '😊') - bounds check - 1 before end index in 17 ticks.
 in 0 ticks.
🎢πŸ”₯Γ©-aΜ„Μˆb😊 using UnicodeReplaceAtFastest(7, '😊') - bounds check - end index in 13 ticks.
 in 0 ticks.
🎢πŸ”₯Γ©-aΜ„ΜˆbcΜ§ using UnicodeReplaceAtFastest(8, '😊') - bounds check - after end index in 27 ticks.

String.Replace works, but replaces all characters, not at specific location as above functions

🎢+Γ©- using String.Replace('πŸ”₯', '+') in 16 ticks.
Cached Result
Last Run: 10:43:31 pm
Compile: 0.126s
Execute: 0.016s
Memory: 40kb
CPU: 0.031s