How to identify Encoding [closed] - string

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Can you please cout me in which format this string is encoded
\u041f\u0440\u0430\u0446\u0430",realty:"\u041d\u0435\u0440\u0443\u0445\u043e\u043c\u0430\u0441\u0446\u044c",hitech:"Hi-Tech",sport:"\u0421\u043f\u043e\u0440\u0442",files:"\u0424\u0430\u0439\u043b\u044b",lady:"\u041b\u0435\u0434\u0437\u0456",
deti:"\u0414\u0437\u0435\u0446\u0456",health:"\u0417\u0434\u0430\u0440\u043e\u045e\u0435",travel:"\u041f\u0430\u0434\u0430\u0440\u043e\u0436\u0436\u044b",cards:"\u041f\u0430\u0448\u0442\u043e\u045e\u043a\u0456",horo:"\u0413\u0430\u0440\u0430\u0441\u043a\u043e\u043f\u044b",pogoda:"\u041d\u0430\u0434\u0432\u043e\u0440'\u0435",afisha:"\u0410\u0444\u0456\u0448\u0430",video:"\u0412\u0456\u0434\u044d\u0430

That looks like a fragment of a JSON document with Cyrillic text.

Related

How to split a number in a filename in Linux? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I have this file name:
ABCD1B02.C50.N1995009.2019353.dat
I would like to extract the final 7 numbers and put space like this
extr=2019 353;
In bash script:
fname='ABCD1B02.C50.N1995009.2019353.dat'
extr="${fname:${#fname}-11:4} ${fname:${#fname}-7:3}"

Convert MAC addresses (Excel) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
is there a formula in Excel, which can convert MAC address format 11:22:33:44:55:ab to 1122-3344-55ab?
Thank you!
nest SUBSTITUTES:
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,":","-",4),":","-",2),":","")

How to change specific part of a string? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
For example, I have a string like this
a = "starlight sunlight"
And I want to change it into
a = "starspot sunspot"
well i guessed you writing this in python so you can use the replace method
enter example
in your case you went to replace the word light with the word spot so just write
a=a.replace("light","post")

I am not able to access this filename [{"filename":"54526108_1946746692102415_4003062236024143872_n.jpg"}] [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I have tried console.log(filename.filename); but it is not working.
[{"filename":"54526108_1946746692102415_4003062236024143872_n.jpg"}]
It’s an array with an object in it. Just try
console.log(filename[0].filename)

What does html mean [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
what does it mean s this.
This is bold, just like this.
You can combine them
if you really have to.
It means Hyper Text Markup Language

Resources