这是一个只转义unicode字符串中的控制字符的解决方案。
control_chars = [unichr(c) for c in range(0x20)] # you may extend this as required
def control_escape2(s):
return u''.join([c.encode('unicode_escape') if c in control_chars else c for c in s])
Which is the correct way to encode escape characters in Python 2 without killing Unicode?
这听起来是一个值得放置模块的功能,因此我不必总是复制相同的代码。在现有的python模块中有这样的东西吗?
答案 0 :(得分:0)
是和否:每个this answer,<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:id="@+id/card"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/AlbumImage"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginEnd="10dp"
android:src="@drawable/round"
app:civ_border_color="#d35400"
app:civ_border_width="4dp" />
<TextView
android:id="@+id/Title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="5dp"
android:layout_marginTop="30dp"
android:layout_toEndOf="@id/AlbumImage"
android:text="TextView"
android:textSize="25sp" />
<TextView
android:id="@+id/Artist"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/Title"
android:layout_centerHorizontal="true"
android:layout_toEndOf="@id/AlbumImage"
android:text="TextView" />
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
模块具有与此相关的实用程序,但它本身没有unicodedata
函数。