我正在尝试使用Java从@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
BusProvider.getInstanceBus().register(this);
}
@Override
public void onDetach() {
super.onDetach();
BusProvider.getInstanceBus().unregister(this);
}
标记(@Subscribe
public void onSubscribeLoginResponse(DataResponseOne dOne) {
[code to use the event...]
}
@Subscribe
public void onSubscribeLoginResponse(DataResponseTwo dTwo) {
[code to use the event...]
}
标记)获取href
属性的值,而不使用第三方API。我知道标签的类。该网站如下:
anchor
答案 0 :(得分:0)
如果您尝试避免使用任何第三方库,则可以使用正则表达式。您的示例的一个非常基本的表达式是
<a href="(.*?)">
并且应该工作。您可以使用https://www.debuggex.com/
自行试用结果将在第二组中。