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.