如何在Notepad ++中查找和替换括号内容

时间:2015-12-08 08:04:54

标签: notepad++

我需要将$products = \DB::table('products') ->where('products_id', 1) ->join('skus', 'skus.product_id', '=', 'products.product_id') ->join('likes', 'likes.product_id', '=', 'products.product_id') ->join('comments', 'comments.product_id', '=', 'products.product_id'); 替换为drop:label key="key1"

我正在尝试查找s:label key="gettext('key1')"并替换为drop:label key=("*"),但它会将其替换为实际*而不是替换为key1,因为我希望

有解决方案的人吗?

2 个答案:

答案 0 :(得分:0)

我对Notepad ++并不是100%肯定,但如果它使用普通的正则表达式,那么你的模式应该是这样的:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="ir.nooraei.afsaneirani.android.graphic"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="22" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.NoTitleBar" >

        <activity
            android:name="com.main.da"
            android:configChanges="orientation|keyboardHidden"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="http"/>
                <data android:host="anysite.com"/>
                <data android:host="google.com"/>
                <data android:host="www.google.com"/>
                <data
                    android:host="bestnews.com"
                    android:scheme="http" />
            </intent-filter>
        </activity>

 <activity
            android:name="com.main.da"
            android:label="@string/title_activity_splash_screen" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
 </application>
</manifest>

然后你的替代品如下:

drop:label key=\"(.*)\"

更新:更新了替换,因为Notepad ++似乎需要在替换上转义

答案 1 :(得分:0)

在Npp中你必须逃避替换部分中的括号:

  • Ctrl + H
  • 替换窗口中的

找到:drop:label key="(.*?)"
替换为:s:label key="gettext\('$1'\)"

确保选中Regular expression,然后点击全部替换