clean none printable unicode chars

lezawang

Well-known Member
Joined
Mar 27, 2016
Messages
1,805
Office Version
  1. 2016
Platform
  1. Windows
Hi
I have cells as below. I know clean() function will not clean these chars and I will need to do substitute() these chars with "" for example. But I have 2 questions:
1) does that mean I have to create a new substitute() function for each cell? knowing these cells are having different chars? that wont be practical. Is there any better way?
2) How do I know the code of a character? for example, I read and found that [] code is 127 but lets say I do not know that how can I know the code? I went to Insert-->Symbol and tried to find [] but that is very time consuming, is there anyway to search (reverse search)? Thank you very much

=CHAR(127)&" "&"Hello"&" "&CHAR(127)
=CHAR(126)&" Hello "&CHAR(126)
=CHAR(125)&"Hello"
=CHAR(134)&"Hello"
=CHAR(127)&CHAR(127)&"Hello"
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Answering #2 first, CODE is the inverse of CHAR (e.g. =CODE(CHAR(127)) = 127)

For #1 , this would be easier with a UDF in VBA (search the board for "return only alphanumeric" or similar)... but, if you didn't want to go the VBA route, you could try something like:

Code:
A2 =TEXTJOIN("",TRUE,IF(MOD(MATCH(CODE(MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)),{0,48,58,65,91,97,123}),2)=0,MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1),""))
which is an array formula and must be confirmed with CTRL+SHIFT+ENTER (doing so correctly will result in VBA putting { }s around your formula in the formula bar).
@Jonmo1 has a nice write-up here about the mechanics of a similar formula, specifically why the {0,48,...,123} values are there: https://www.mrexcel.com/forum/excel...ly-contains-z-1-9-characters.html#post1811442
 
Upvote 0

Forum statistics

Threads
1,214,912
Messages
6,122,204
Members
449,072
Latest member
DW Draft

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top