+ Reply to Thread
Results 1 to 8 of 8

Remove text between [brackets]

Hybrid View

  1. #1
    Registered User
    Join Date
    07-25-2014
    Location
    London
    MS-Off Ver
    2007
    Posts
    3

    Remove text between [brackets]

    Hi @ all,

    I use a macro for deleting a text between two brackets in a range("a1:a6000").
    Dim c As Range
    Dim p1 As Double
    Dim p2 As Double
    For Each c In Range("a1:a60")
    p1 = InStr(c, "[")
    p2 = InStr(c, "]")
    If p1 > 0 Then c.Value = Left(c, p1 - 1) & Right(c, Len(c) - p2 - 0)
    
    Next c
    it works fine but only for the first pair of brackets:

    something like "cars[ss,s,c]" becomes "cars"

    but:

    auto[o,au]mo[o,au]bi[i,ay,ai]le becomes automo[o,au]bi[i,ay,ai]le


    how can I modify the code to delete all the text between all the bracket pairs in a cell ?


    Many thanks in advance for any help!
    Gr.Benni
    Last edited by Benni5555; 07-25-2014 at 10:26 PM.

  2. #2
    Forum Expert
    Join Date
    12-10-2006
    Location
    Sydney
    MS-Off Ver
    Office 365
    Posts
    3,565

    Re: Remove text between [brackets]

    Hi Benni5555,

    Welcome to the forum!!

    I may have a solution but you just need to wrap your code in appropriate tags like this:

    [CODE] Your code here [/CODE]

    ...before I can post it as it's a requirement of the forum.

    Regards,

    Robert
    ____________________________________________
    Please ensure you mark your thread as Solved once it is. Click here to see how
    If this post helps, please don't forget to say thanks by clicking the star icon in the bottom left-hand corner of my post

  3. #3
    Registered User
    Join Date
    07-25-2014
    Location
    London
    MS-Off Ver
    2007
    Posts
    3

    Re: Remove text between [brackets]

     Dim c As Range
    Dim p1 As Double
    Dim p2 As Double
    For Each c In Range("a1:a60")
    p1 = InStr(c, "[")
    p2 = InStr(c, "]")
    If p1 > 0 Then c.Value = Left(c, p1 - 1) & Right(c, Len(c) - p2 - 0)
    
    Next c

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Remove text between [brackets]

    Hello Benni5555,

    Welcome to the Forum! This will do it.

    Sub RemoveDataInBrackets()
    
        Dim Cell    As Range
        Dim Matches As Object
        Dim RegExp  As Object
        Dim Rng     As Range
        Dim Text    As String
        Dim Wks     As Worksheet
        
            Set Wks = ActiveSheet
            
            Set Rng = Wks.Range("A1:A6000")
            
                Set RegExp = CreateObject("VBScript.RegExp")
                RegExp.Global = True
                RegExp.Pattern = "\[[^\[\]]*\]"
            
                For Each Cell In Rng
                    Text = Cell
                    Set Matches = RegExp.Execute(Text)
                    If Matches.Count > 0 Then Text = RegExp.Replace(Text, "")
                Next Cell
    
    End Sub
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  5. #5
    Forum Contributor
    Join Date
    05-10-2012
    Location
    Paris, France
    MS-Off Ver
    2016/365
    Posts
    123

    Re: Remove text between [brackets]

    Hi Benni5555

    Try this code
    Sub Test()
      Dim Cel As Range
      Dim sTab() As String, sTab2() As String, Ind As Integer
      Dim sTmp As String
      '
      For Each Cel In Range("a1:a60")
        sTab = Split(Cel.Value, "]")
        For Ind = 0 To UBound(sTab)
          sTab2 = Split(sTab(Ind), "[")
          On Error Resume Next
          sTmp = sTmp & sTab2(0)
          On Error GoTo 0
        Next Ind
        Range("B" & Cel.Row).Value = sTmp: sTmp = ""
      Next Cel
    End Sub
    Edit : Hi Leith Ross, very good ;-)

    Regards,
    Last edited by BrianM45; 07-25-2014 at 10:48 PM.

  6. #6
    Registered User
    Join Date
    07-25-2014
    Location
    London
    MS-Off Ver
    2007
    Posts
    3

    Re: Remove text between [brackets]

    Thanks for the quick answers,

    the first code is not working at all?
    the second one is working fine!



    Many thanks anyway!

  7. #7
    Forum Expert
    Join Date
    12-10-2006
    Location
    Sydney
    MS-Off Ver
    Office 365
    Posts
    3,565

    Re: Remove text between [brackets]

    Thanks for adding the tags

    Though you've got a solution (nice one Leith), here's my proposed solution in any case:

    Option Explicit
    Sub Macro2()
    
        'http://www.excelforum.com/excel-programming-vba-macros/1027174-remove-text-between-brackets.html
    
        Dim c As Range
        Dim p1 As Double
        Dim p2 As Double
        
        Application.ScreenUpdating = False
    
        For Each c In Range("A1:A60")
            Do Until InStr(c, "[") = 0
                p1 = InStr(c, "[")
                p2 = InStr(c, "]")
                If p1 > 0 Then c.Value = Left(c, p1 - 1) & Right(c, Len(c) - p2 - 0)
            Loop
        Next c
        
        Application.ScreenUpdating = True
    
    End Sub
    Regards,

    Robert

  8. #8
    Valued Forum Contributor
    Join Date
    03-21-2013
    Location
    cyberia
    MS-Off Ver
    Excel 2007
    Posts
    457

    Re: Remove text between [brackets]

    Cell = abc[[12]3]yu[4]trw[787]

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Remove commas if they are between brackets
    By lukesmith7 in forum Excel General
    Replies: 12
    Last Post: 06-25-2014, 05:18 AM
  2. Please help to remove numbers in brackets - abc (123)
    By gwmbox in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 05-13-2013, 08:53 AM
  3. Remove all data within (brackets)
    By duckboy1981 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-02-2009, 05:39 AM
  4. Remove brackets without format change
    By Oleg in forum Excel General
    Replies: 5
    Last Post: 01-19-2009, 09:42 AM
  5. Remove brackets
    By wei82 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 04-24-2007, 10:49 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1