我有一个正则表达式
(@Xml[A-Za-z0-9]+(\([^)]+\))?|import javax\.xml\.bind\.annotation\.[A-Za-z0-9.]+;)[ \t]*(\r?\n)
我用来剥离 xml 绑定注释和
导入 javax.xml.bind.annotation.*
它可以成功替换,除了以下类型的东西
有人可以用正则表达式帮助我了解我做错了什么吗?
我也尝试使用http://regexpal.com/进行调试,但未能成功 :-( 您可以在网站http://regexpal.com/上粘贴正则表达式和下面的 java 代码,您可以准确地看到我的内容我无法实现。
非常感谢有关此的任何帮助。
@XmlElements({
@XmlElement(name = "GLSurfaceView", type = GLSurfaceView.class),
@XmlElement(name = "AdapterView", type = AdapterView.class),
@XmlElement(name = "ZoomButton", type = ZoomButton.class)
})
整个java文件如下所示
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* <p>Java class for ViewGroup complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="ViewGroup">
* <complexContent>
* <extension base="{}View">
* <group ref="{}any-view" maxOccurs="unbounded" minOccurs="0"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}addStatesFromChildren"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}alwaysDrawnWithCache"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}animateLayoutChanges"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}animationCache"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}clipChildren"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}clipToPadding"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}descendantFocusability"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}layoutAnimation"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}persistentDrawingCache"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}splitMotionEvents"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}orientation"/>
* <attribute ref="{http://schemas.android.com/apk/res/android}divider"/>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ViewGroup", propOrder = {
"anyView"
})
@XmlSeeAlso({
GridLayout.class,
FragmentBreadCrumbs.class,
AbsoluteLayout.class,
SlidingDrawer.class,
RelativeLayout.class,
LinearLayout.class,
AdapterView.class,
FrameLayout.class
})
public class ViewGroup
extends View
{
@XmlElements({
@XmlElement(name = "GLSurfaceView", type = GLSurfaceView.class),
@XmlElement(name = "AdapterView", type = AdapterView.class),
@XmlElement(name = "AdapterViewAnimator", type = AdapterViewAnimator.class),
@XmlElement(name = "AutoCompleteTextView", type = AutoCompleteTextView.class),
@XmlElement(name = "MediaController", type = MediaController.class),
@XmlElement(name = "TextView", type = TextView.class),
@XmlElement(name = "FragmentBreadCrumbs", type = FragmentBreadCrumbs.class),
@XmlElement(name = "AppWidgetHostView", type = AppWidgetHostView.class),
@XmlElement(name = "GestureOverlayView", type = GestureOverlayView.class),
@XmlElement(name = "ExtractEditText", type = ExtractEditText.class),
@XmlElement(name = "KeyboardView", type = KeyboardView.class),
@XmlElement(name = "RSSurfaceView", type = RSSurfaceView.class),
@XmlElement(name = "RSTextureView", type = RSTextureView.class),
@XmlElement(name = "SurfaceView", type = SurfaceView.class),
@XmlElement(name = "TextureView", type = TextureView.class),
@XmlElement(name = "ViewGroup", type = ViewGroup.class),
@XmlElement(name = "ViewStub", type = ViewStub.class),
@XmlElement(name = "WebView", type = WebView.class),
@XmlElement(name = "AbsListView", type = AbsListView.class),
@XmlElement(name = "AbsSeekBar", type = AbsSeekBar.class),
@XmlElement(name = "AbsSpinner", type = AbsSpinner.class),
@XmlElement(name = "AbsoluteLayout", type = AbsoluteLayout.class),
@XmlElement(name = "AdapterViewFlipper", type = AdapterViewFlipper.class),
@XmlElement(name = "AnalogClock", type = AnalogClock.class),
@XmlElement(name = "Button", type = Button.class),
@XmlElement(name = "CalendarView", type = CalendarView.class),
@XmlElement(name = "CheckBox", type = CheckBox.class),
@XmlElement(name = "CheckedTextView", type = CheckedTextView.class),
@XmlElement(name = "Chronometer", type = Chronometer.class),
@XmlElement(name = "CompoundButton", type = CompoundButton.class),
@XmlElement(name = "DatePicker", type = DatePicker.class),
@XmlElement(name = "DialerFilter", type = DialerFilter.class),
@XmlElement(name = "DigitalClock", type = DigitalClock.class),
@XmlElement(name = "EditText", type = EditText.class),
@XmlElement(name = "ExpandableListView", type = ExpandableListView.class),
@XmlElement(name = "FrameLayout", type = FrameLayout.class),
@XmlElement(name = "Gallery", type = Gallery.class),
@XmlElement(name = "GridLayout", type = GridLayout.class),
@XmlElement(name = "GridView", type = GridView.class),
@XmlElement(name = "HorizontalScrollView", type = HorizontalScrollView.class),
@XmlElement(name = "ImageButton", type = ImageButton.class),
@XmlElement(name = "ImageSwitcher", type = ImageSwitcher.class),
@XmlElement(name = "ImageView", type = ImageView.class),
@XmlElement(name = "LinearLayout", type = LinearLayout.class),
@XmlElement(name = "ListView", type = ListView.class),
@XmlElement(name = "MultiAutoCompleteTextView", type = MultiAutoCompleteTextView.class),
@XmlElement(name = "NumberPicker", type = NumberPicker.class),
@XmlElement(name = "ProgressBar", type = ProgressBar.class),
@XmlElement(name = "QuickContactBadge", type = QuickContactBadge.class),
@XmlElement(name = "RadioButton", type = RadioButton.class),
@XmlElement(name = "RadioGroup", type = RadioGroup.class),
@XmlElement(name = "RatingBar", type = RatingBar.class),
@XmlElement(name = "RelativeLayout", type = RelativeLayout.class),
@XmlElement(name = "ScrollView", type = ScrollView.class),
@XmlElement(name = "SearchView", type = SearchView.class),
@XmlElement(name = "SeekBar", type = SeekBar.class),
@XmlElement(name = "SlidingDrawer", type = SlidingDrawer.class),
@XmlElement(name = "Space", type = Space.class),
@XmlElement(name = "Spinner", type = Spinner.class),
@XmlElement(name = "StackView", type = StackView.class),
@XmlElement(name = "Switch", type = Switch.class),
@XmlElement(name = "TabHost", type = TabHost.class),
@XmlElement(name = "TabWidget", type = TabWidget.class),
@XmlElement(name = "TableLayout", type = TableLayout.class),
@XmlElement(name = "TableRow", type = TableRow.class),
@XmlElement(name = "TextSwitcher", type = TextSwitcher.class),
@XmlElement(name = "TimePicker", type = TimePicker.class),
@XmlElement(name = "ToggleButton", type = ToggleButton.class),
@XmlElement(name = "TwoLineListItem", type = TwoLineListItem.class),
@XmlElement(name = "VideoView", type = VideoView.class),
@XmlElement(name = "ViewAnimator", type = ViewAnimator.class),
@XmlElement(name = "ViewFlipper", type = ViewFlipper.class),
@XmlElement(name = "ViewSwitcher", type = ViewSwitcher.class),
@XmlElement(name = "ZoomButton", type = ZoomButton.class),
@XmlElement(name = "ZoomControls", type = ZoomControls.class)
})
protected List<View> anyView;
@XmlAttribute(name = "addStatesFromChildren", namespace = "http://schemas.android.com/apk/res/android")
protected String addStatesFromChildren;
@XmlAttribute(name = "alwaysDrawnWithCache", namespace = "http://schemas.android.com/apk/res/android")
protected String alwaysDrawnWithCache;
@XmlAttribute(name = "animateLayoutChanges", namespace = "http://schemas.android.com/apk/res/android")
protected String animateLayoutChanges;
@XmlAttribute(name = "animationCache", namespace = "http://schemas.android.com/apk/res/android")
protected String animationCache;
@XmlAttribute(name = "clipChildren", namespace = "http://schemas.android.com/apk/res/android")
protected String clipChildren;
@XmlAttribute(name = "clipToPadding", namespace = "http://schemas.android.com/apk/res/android")
protected String clipToPadding;
@XmlAttribute(name = "descendantFocusability", namespace = "http://schemas.android.com/apk/res/android")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String descendantFocusability;
@XmlAttribute(name = "layoutAnimation", namespace = "http://schemas.android.com/apk/res/android")
protected String layoutAnimation;
@XmlAttribute(name = "persistentDrawingCache", namespace = "http://schemas.android.com/apk/res/android")
protected String persistentDrawingCache;
@XmlAttribute(name = "splitMotionEvents", namespace = "http://schemas.android.com/apk/res/android")
protected String splitMotionEvents;
@XmlAttribute(name = "orientation", namespace = "http://schemas.android.com/apk/res/android")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String orientation;
@XmlAttribute(name = "divider", namespace = "http://schemas.android.com/apk/res/android")
protected String divider;
/**
* Gets the value of the anyView property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the anyView property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getAnyView().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link GLSurfaceView }
* {@link AdapterView }
* {@link AdapterViewAnimator }
* {@link AutoCompleteTextView }
* {@link MediaController }
* {@link TextView }
* {@link FragmentBreadCrumbs }
* {@link AppWidgetHostView }
* {@link GestureOverlayView }
* {@link ExtractEditText }
* {@link KeyboardView }
* {@link RSSurfaceView }
* {@link RSTextureView }
* {@link SurfaceView }
* {@link TextureView }
* {@link ViewGroup }
* {@link ViewStub }
* {@link WebView }
* {@link AbsListView }
* {@link AbsSeekBar }
* {@link AbsSpinner }
* {@link AbsoluteLayout }
* {@link AdapterViewFlipper }
* {@link AnalogClock }
* {@link Button }
* {@link CalendarView }
* {@link CheckBox }
* {@link CheckedTextView }
* {@link Chronometer }
* {@link CompoundButton }
* {@link DatePicker }
* {@link DialerFilter }
* {@link DigitalClock }
* {@link EditText }
* {@link ExpandableListView }
* {@link FrameLayout }
* {@link Gallery }
* {@link GridLayout }
* {@link GridView }
* {@link HorizontalScrollView }
* {@link ImageButton }
* {@link ImageSwitcher }
* {@link ImageView }
* {@link LinearLayout }
* {@link ListView }
* {@link MultiAutoCompleteTextView }
* {@link NumberPicker }
* {@link ProgressBar }
* {@link QuickContactBadge }
* {@link RadioButton }
* {@link RadioGroup }
* {@link RatingBar }
* {@link RelativeLayout }
* {@link ScrollView }
* {@link SearchView }
* {@link SeekBar }
* {@link SlidingDrawer }
* {@link Space }
* {@link Spinner }
* {@link StackView }
* {@link Switch }
* {@link TabHost }
* {@link TabWidget }
* {@link TableLayout }
* {@link TableRow }
* {@link TextSwitcher }
* {@link TimePicker }
* {@link ToggleButton }
* {@link TwoLineListItem }
* {@link VideoView }
* {@link ViewAnimator }
* {@link ViewFlipper }
* {@link ViewSwitcher }
* {@link ZoomButton }
* {@link ZoomControls }
*
*
*/
public List<View> getAnyView() {
if (anyView == null) {
anyView = new ArrayList<View>();
}
return this.anyView;
}
/**
* Gets the value of the addStatesFromChildren property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddStatesFromChildren() {
return addStatesFromChildren;
}
/**
* Sets the value of the addStatesFromChildren property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddStatesFromChildren(String value) {
this.addStatesFromChildren = value;
}
/**
* Gets the value of the alwaysDrawnWithCache property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlwaysDrawnWithCache() {
return alwaysDrawnWithCache;
}
/**
* Sets the value of the alwaysDrawnWithCache property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAlwaysDrawnWithCache(String value) {
this.alwaysDrawnWithCache = value;
}
/**
* Gets the value of the animateLayoutChanges property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAnimateLayoutChanges() {
return animateLayoutChanges;
}
/**
* Sets the value of the animateLayoutChanges property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAnimateLayoutChanges(String value) {
this.animateLayoutChanges = value;
}
/**
* Gets the value of the animationCache property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAnimationCache() {
return animationCache;
}
/**
* Sets the value of the animationCache property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAnimationCache(String value) {
this.animationCache = value;
}
/**
* Gets the value of the clipChildren property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClipChildren() {
return clipChildren;
}
/**
* Sets the value of the clipChildren property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClipChildren(String value) {
this.clipChildren = value;
}
/**
* Gets the value of the clipToPadding property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClipToPadding() {
return clipToPadding;
}
/**
* Sets the value of the clipToPadding property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClipToPadding(String value) {
this.clipToPadding = value;
}
/**
* Gets the value of the descendantFocusability property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescendantFocusability() {
return descendantFocusability;
}
/**
* Sets the value of the descendantFocusability property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescendantFocusability(String value) {
this.descendantFocusability = value;
}
/**
* Gets the value of the layoutAnimation property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLayoutAnimation() {
return layoutAnimation;
}
/**
* Sets the value of the layoutAnimation property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLayoutAnimation(String value) {
this.layoutAnimation = value;
}
/**
* Gets the value of the persistentDrawingCache property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersistentDrawingCache() {
return persistentDrawingCache;
}
/**
* Sets the value of the persistentDrawingCache property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersistentDrawingCache(String value) {
this.persistentDrawingCache = value;
}
/**
* Gets the value of the splitMotionEvents property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSplitMotionEvents() {
return splitMotionEvents;
}
/**
* Sets the value of the splitMotionEvents property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSplitMotionEvents(String value) {
this.splitMotionEvents = value;
}
/**
* Gets the value of the orientation property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrientation() {
return orientation;
}
/**
* Sets the value of the orientation property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrientation(String value) {
this.orientation = value;
}
/**
* Gets the value of the divider property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDivider() {
return divider;
}
/**
* Sets the value of the divider property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDivider(String value) {
this.divider = value;
}
}
成功replae后,以下是我正在查看的内容
它应该删除(或注释掉)下面的代码片段
@XmlElements({
@XmlElement(name = "GLSurfaceView", type = GLSurfaceView.class),
@XmlElement(name = "AdapterView", type = AdapterView.class),
@XmlElement(name = "AdapterViewAnimator", type = AdapterViewAnimator.class),
@XmlElement(name = "AutoCompleteTextView", type = AutoCompleteTextView.class),
@XmlElement(name = "MediaController", type = MediaController.class),
@XmlElement(name = "TextView", type = TextView.class),
@XmlElement(name = "FragmentBreadCrumbs", type = FragmentBreadCrumbs.class),
@XmlElement(name = "AppWidgetHostView", type = AppWidgetHostView.class),
@XmlElement(name = "GestureOverlayView", type = GestureOverlayView.class),
@XmlElement(name = "ExtractEditText", type = ExtractEditText.class),
@XmlElement(name = "KeyboardView", type = KeyboardView.class),
@XmlElement(name = "RSSurfaceView", type = RSSurfaceView.class),
@XmlElement(name = "RSTextureView", type = RSTextureView.class),
@XmlElement(name = "SurfaceView", type = SurfaceView.class),
@XmlElement(name = "TextureView", type = TextureView.class),
@XmlElement(name = "ViewGroup", type = ViewGroup.class),
@XmlElement(name = "ViewStub", type = ViewStub.class),
@XmlElement(name = "WebView", type = WebView.class),
@XmlElement(name = "AbsListView", type = AbsListView.class),
@XmlElement(name = "AbsSeekBar", type = AbsSeekBar.class),
@XmlElement(name = "AbsSpinner", type = AbsSpinner.class),
@XmlElement(name = "AbsoluteLayout", type = AbsoluteLayout.class),
@XmlElement(name = "AdapterViewFlipper", type = AdapterViewFlipper.class),
@XmlElement(name = "AnalogClock", type = AnalogClock.class),
@XmlElement(name = "Button", type = Button.class),
@XmlElement(name = "CalendarView", type = CalendarView.class),
@XmlElement(name = "CheckBox", type = CheckBox.class),
@XmlElement(name = "CheckedTextView", type = CheckedTextView.class),
@XmlElement(name = "Chronometer", type = Chronometer.class),
@XmlElement(name = "CompoundButton", type = CompoundButton.class),
@XmlElement(name = "DatePicker", type = DatePicker.class),
@XmlElement(name = "DialerFilter", type = DialerFilter.class),
@XmlElement(name = "DigitalClock", type = DigitalClock.class),
@XmlElement(name = "EditText", type = EditText.class),
@XmlElement(name = "ExpandableListView", type = ExpandableListView.class),
@XmlElement(name = "FrameLayout", type = FrameLayout.class),
@XmlElement(name = "Gallery", type = Gallery.class),
@XmlElement(name = "GridLayout", type = GridLayout.class),
@XmlElement(name = "GridView", type = GridView.class),
@XmlElement(name = "HorizontalScrollView", type = HorizontalScrollView.class),
@XmlElement(name = "ImageButton", type = ImageButton.class),
@XmlElement(name = "ImageSwitcher", type = ImageSwitcher.class),
@XmlElement(name = "ImageView", type = ImageView.class),
@XmlElement(name = "LinearLayout", type = LinearLayout.class),
@XmlElement(name = "ListView", type = ListView.class),
@XmlElement(name = "MultiAutoCompleteTextView", type = MultiAutoCompleteTextView.class),
@XmlElement(name = "NumberPicker", type = NumberPicker.class),
@XmlElement(name = "ProgressBar", type = ProgressBar.class),
@XmlElement(name = "QuickContactBadge", type = QuickContactBadge.class),
@XmlElement(name = "RadioButton", type = RadioButton.class),
@XmlElement(name = "RadioGroup", type = RadioGroup.class),
@XmlElement(name = "RatingBar", type = RatingBar.class),
@XmlElement(name = "RelativeLayout", type = RelativeLayout.class),
@XmlElement(name = "ScrollView", type = ScrollView.class),
@XmlElement(name = "SearchView", type = SearchView.class),
@XmlElement(name = "SeekBar", type = SeekBar.class),
@XmlElement(name = "SlidingDrawer", type = SlidingDrawer.class),
@XmlElement(name = "Space", type = Space.class),
@XmlElement(name = "Spinner", type = Spinner.class),
@XmlElement(name = "StackView", type = StackView.class),
@XmlElement(name = "Switch", type = Switch.class),
@XmlElement(name = "TabHost", type = TabHost.class),
@XmlElement(name = "TabWidget", type = TabWidget.class),
@XmlElement(name = "TableLayout", type = TableLayout.class),
@XmlElement(name = "TableRow", type = TableRow.class),
@XmlElement(name = "TextSwitcher", type = TextSwitcher.class),
@XmlElement(name = "TimePicker", type = TimePicker.class),
@XmlElement(name = "ToggleButton", type = ToggleButton.class),
@XmlElement(name = "TwoLineListItem", type = TwoLineListItem.class),
@XmlElement(name = "VideoView", type = VideoView.class),
@XmlElement(name = "ViewAnimator", type = ViewAnimator.class),
@XmlElement(name = "ViewFlipper", type = ViewFlipper.class),
@XmlElement(name = "ViewSwitcher", type = ViewSwitcher.class),
@XmlElement(name = "ZoomButton", type = ZoomButton.class),
@XmlElement(name = "ZoomControls", type = ZoomControls.class)
})