Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从以下内容中提取值“app_name”和“这是一个很棒的应用程序”,但不知道我该怎么做。我无法弄清楚这个的正则表达式。
这是我的输入的样子:
<string name = "app_name"> This is a great app </string>
这不是从 Strings.xml 读取值到 Android 中的 Java 代码的努力。这是一个完全不同的情况,我只想打印出这些值。
/<string name="([^"]+)">([^<]+)<\/string>/i
名称属性 ( app_name) 将存储在反向引用 1 中,实际字符串值 ( This is a great app) 将存储在反向引用 2 中。
app_name
This is a great app
有了更多信息,可以修改此正则表达式以在更多情况下工作,但在提供的信息有限的情况下,它可以工作,但可能并非在所有情况下都有效。