I have Simple Question regarding space define in string
in string.xml
file.
Let's say If we define string
<string name="regNumber">RegNumber : </string>
it will consider space before Colon
not after. if we have put space after Colon
then we have to define below way.
<string name="regNumber">RegNumber :\u0020</string>
or let's say this way also
<string name="regNumber">RegNumber : </string>
Question : why space is not Consider After Colon
without writing any code ?
Brief Explanation :
If write this
<string name="regNumber">RegNumber : </string>
it will put space before Colon
but not After the Colon
so the text will be RegNumber :
But My Question it will output like this it will not consider before Colon
why it is consider.
RegNumber: