VS 2008 Multiline Regex Matching Doesn't Work
Sep 5, 2009
I've been working with Regex and I've run into something that doesn't make sense to me; I either misunderstood how the Multiline option works, I'm not using it right, or it really just doesn't work like it's supposed to. This is a little test I made:
[Code]...
View 18 Replies
ADVERTISEMENT
Apr 17, 2009
i'm really new at the VB language only been doing for around 2 weeks.I hoping someone can help me with this, how would i get this USERNAME, USERID from a string
Adding the USERNAME to listbox, and then USERID into an array separated by a space. - I no how to do this part just the regex above remember i've only been doing for two weeks so i'm not very knowledged at this.
View 11 Replies
Apr 16, 2009
how would i get this USERNAME, USERID from this string:
Code:
<a href="javascript:attackWindow('USERNAME','USERID','50','RANDSTRING', 'RANDSTRING2')">
Adding the USERNAME to listbox, and then USERID into an array separated by a space.
View 2 Replies
Mar 30, 2011
How ever it is returning wrong results. Any one spot the mistake. Needs to return the username / ID from every online user from [code]...
View 3 Replies
Jun 21, 2011
Regex in VB2008.I have a file system directory that my code is watching. When a file is placed in that directory my code kicks off a processing application. Based on the filename structure, the code will perform different processes. So I need to match the filename structure specficially to get the correct processes to run on that file.My file name structure is: IK2YYYYMMDD_VV.e;where YYYYMMDD is well, the year, month and day. And VV is a verison number from 00-99 If the new file saved in the directory match this structure then I want a TRUE returned. From a filewatcher I get the filename as an "e.Name" (FileSystemEventArgs) variable. My current code to see if it matches the baseline structure is;
Dim IKPred2Match as New Regex ("^IK2.*\.e$") Dim ValidIKPred2Match as MatchCollection = IKPred2Match.Matches(e.Name)I've tried many different regex match patterns, and just can't seem to find the magic one.
View 2 Replies
Jul 1, 2011
I need an extremely simple regex pattern that matches anything within square brackets [].
Example:
This is a [test] text with [some] [examples].Required results: [test], [some], [examples].I don't want to get rid of the brackets, they should be included in the result (that should make it easier, right?)
If possible I'd like to exlude results that have whitespace in them, so things like [this string] should not be matched. If that gets too hard (probably not, but hey I can't even manage this :S) then I don't really mind, I can always check if the result contains whitespace myself.
I tried a lot of examples I could find online and ones that I could think of myself but none work. Note: I've been testing with the Visual Studio Find dialog (checking to use regular expressions obviously), maybe that's where the problem lies, because I don't really understand why some of these don't work...
Anyway, first thing I tried was simple: match the two brackets and one or more characters in between (that should be a +, right?)
View 4 Replies
May 29, 2009
I'm using VB.Net in an ASP.Net 2.0 app to run some regular expressions that remove some unnecessary markup. One of the things that I'd like to do is remove span elements that don't have any attributes in them:[code]I'd like to remove the outer span elements. Unfortunately, my regex above gives me this as a result, since the closing span matches the first one it comes across:[code]
View 4 Replies
Dec 3, 2010
I want to use Regex.Replace to replace a Match with a context sensitive value. I use the MatchEvaluator for this. But to make things simpler lets say I'm matching %v I want %v to be escapable, so if I use \%v it will not match. Anything else should match.
The pattern I came up with is this: (?:[^\]|^)%v It basically matches %v if it occurs at the beginning of the string, or if it follows any character except . It doesn't capture the first part of the expression.I know this isn't the "right" way to do it. But it worked just fine until I noticed that when I use this pattern in a replace, it includes the character before %v in the replacement(duh, right?)So, if I have ThisIsAValue:%v and I do Regex.Replace, replacing with the string Value, my result will be ThisIsAValueValue instead of ThisIsAValue:ValueI've tried googling this but the fact that "escape character" is so heavy in RegEx, all the results are geared towards the USAGE of escape characters instead of picking them out with a pattern.
View 1 Replies
Aug 1, 2009
When I use this
[code]...
But for some reason, it doesn't place the image into the picture box.If I use this, and replace it with the first box of code, then it works fine.
[code]...
So, why doesn't it work in my class?
View 4 Replies
May 21, 2009
Private Declare Function Beep Lib "kernel32" (ByVal dwFreq As Long, ByVal dwDuration As Long) As Long I've used that API in both vb.net and vb6, but in vb.net doesnt work. Why?
View 7 Replies
Oct 3, 2009
When I press F7, nothing happens. I got the Virtual Key Codes from here.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If GetAsyncKeyState(76) Then
MsgBox("")
ElseIf GetAsyncKeyState(77) Then
[code]....
View 3 Replies
Feb 5, 2011
I am trying to take a look at the cache of UT2004 through my application since the information holder contains some bugs sometimes and I know how to fix them.
vb.net
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim totalText As String =
[code].....
View 5 Replies
Oct 19, 2010
I'm trying to get the Score of Pinball:
<DllImport("kernel32.dll", SetLastError:=True)> _
Public Function ReadProcessMemory( _
ByVal hProcess As IntPtr, _
ByVal lpBaseAddress As IntPtr, _
<Out()> ByVal lpBuffer() As Byte, _
ByVal dwSize As Integer, _
[Code]...
View 2 Replies
Dec 18, 2009
i need to imports some namespaces but it give me error, why??namespaces are:
Imports Outlook = Microsoft.Office.Interop.Outlook Imports Excel = Microsoft.Office.Interop.Excel i put them before the public class of a form.
View 3 Replies
Mar 15, 2011
regex - regular expression to check input on multiline textbox
View 5 Replies
Oct 31, 2011
This is an mock up only ... but the principal applies to a larger project i am working on...
Basically if you do this:
vb
Dim tstform1 As New Form
Dim tstform2 As New Form
tstform1.Text = "1"
[Code]....
View 5 Replies
Jun 26, 2011
I did a test using AxShockwaveFlash1, and while I set the WMode to Transparent, and tested the form, the transparency didn't work! How am I supposed to make it transparent?
View 1 Replies
Jun 5, 2011
I am using vb.net to parse my own basic scripting language, sample below. I am a bit stuck trying to deal with the 2 separate types of nested brackets.
Assuming name = Sam
Assuming timeFormat = hh:mm:ss
Assuming time() is a function that takes a format string but
has a default value and returns a string.
[code]....
I could in theory change the syntax of the script completely but I would rather not. It is designed like this to enable strings without quotes because it will be included in an XML file and quotes in that context were getting messy and very prone to errors and readability issues. If this fails I could redesign using something other than quotes to mark out strings but I would rather use this method.
Preferably, unless there is some other way I am not aware of, I would like to do this using regex. I am aware that the standard regex is not really capable of this but I believe this is possible using MatchEvaluators in vb.net and some form of recursion based replacing. However I have not been able to get my head around it for the last day or so, possibly because it is hugely difficult, possibly because I am ill, or possibly because I am plain thick. I do have the following regex for parts of it.
Detecting the parentheses: (w*?)((.*?))(?=[^(+)]*((|$))
Detecting the square brackets: [[(.*?)]](?=[^[+]]*([[|$))
View 2 Replies
Jun 12, 2011
I am trying to change the background color of a tooltip
I am using tooltip.backgroundcolor = color.colr
No errors but thecolor doesn't change
View 5 Replies
Nov 20, 2010
i try to resize the picturebox according to the image size.for example if the image width is more than 500 then change the sizemode to stretch and then resize the width to 500.i am using a timer for doing this but i think it's unnecessary and stupid. and also it doesn't work well.
View 3 Replies
Jan 29, 2010
i have a simple code that send an e-mail, when i try it running in debug mode it works fine, after compile, i run the exe but the same code doesn't work any more..
View 2 Replies
Feb 19, 2009
i have a table layout panel with a background image. in the table there is some panels with transparent back colours. the image shows up in vb designer but when i execute it, it is invisible.
View 6 Replies
May 12, 2011
EDIT I accidentaly found a walk around to this problem... Adding the following line in the begining of the function solved the problem for some reason.remoteIPAdress = remoteIPAdress & "END"
I have a school assignment where I am supposed to build a simple TCP/IP messenger in Visual Basic.The problem is that when the client sends his IP in a request I've built ("LetMeInXXX.XXX.XXX.XXX"), even if the server receives the request as it should, it parses it completely wrong..
[Code]...
View 1 Replies
Mar 12, 2012
I'm having trouble getting this sub to work on Windows 2003. It works on Windows XP and Windows 7. Windows 2003 has "wininet.dll".
change_proxy("123.115.112.222:3128")
*********************************
Public Sub change_proxy(ByRef proxy_port As String)
[Code].....
View 4 Replies
Nov 14, 2010
So I do not know at design time if the var ms is going to be a stringreader or a memorystream. So I am trying to do basically this:
Dim ms as object = myfunction...
Dim mytype As Type = ms.GetType
Dim returnedobject = ser.Deserialize(CType(ms, mytype))
But I get an error saying "type mytype is not defined". How can I do this?
View 2 Replies
Aug 9, 2011
Im using a Multiline textbox, and I split the content line by line to store each line in string array
My split Code : Dim A() As String = txt_Mobiles.Text.Split(Environment.NewLine)
But this is not working, it read all lines as a single line !!!
Note: I used this line of code before in another project and its work perfect.
View 5 Replies
Feb 2, 2011
I have an application that requires data be entered, and after entering, a button is clicked to process that data. Clicking the button works just as it should--the data is processed properly. In constructing a test module, I provide a set of data values, followed by:
btnWhatever.PerformClick()
Nothing happens. I have used this syntax for years, and it has always worked flawlessly. I have triple checked everything else and isolated the problem to the failure of the PerformClick(). The PerformClick() is in a test subroutine that does nothing but fill textboxes and labels with default data, then calls the PerformClick() on the button to begin processing. Again, the button works fine, the data is entered as it should be, but the PerformClick() does not fire the click event.
View 21 Replies
Mar 9, 2011
I'm currently writing a library where I wish to allow the user to be able to specify spreadsheet cell(s) under four possible alternatives:
A single cell: "A1";
Multiple contiguous cells: "A1:B10"
Multiple separate cells: "A1,B6,I60,AA2"
A mix of 2 and 3: "B2:B12,C13:C18,D4,E11000"
Then, to validate whether the input respects these formats, I intended to use a regular expression to match against. I have consulted this article on Wikipedia:
Regular Expression (Wikipedia)
And I also found this related SO question:regex matching alpha character followed by 4 alphanumerics.Based on the information provided within the above-linked articles, I would try with this Regex:
Default Readonly Property Cells(ByVal cellsAddresses As String) As ReadOnlyDictionary(Of String, ICell)
Get
Dim validAddresses As Regex = New Regex("A-Za-z0-9:,A-Za-z0-9")
[code]....
1. Is my regular expression correct? If not, please help me understand what expression I could use.
2. What exception is more likely to be the more meaningful between a FormatException and an InvalidExpressionException? I hesitate here, since it is related to the format under which the property expect the cells to be input, aside, I'm using an (regular) expression to match against.
View 5 Replies
May 3, 2010
I'm not able to use edit and continue feature while debugging my project. I'm using VB 2008 Express Edition on a 32bit winXP version.
I already check on MSDN and found that this feature can be enable in dialog Tools/Options/Debugging.... However, I do not have a Debugging entry in the treeview in this option dialog. I also used to reset the Import/Export setting features in the tool menue. However this did not solve the problem as well. Then I tried to import some settings and I was able to select the option for debugging. However in the tools/option menu, the debugging feature is still not visible. Edit and Continue is not working as well
Its really a pain to debug with the current setup, as I always have to restart my application when I did some minor changes.
View 9 Replies
Sep 11, 2010
I'm currently trying to get a regular expression to work and I can't seem to get it to, I've used the regex that I am using on an online tester and the text that I'm searching for is being selected alright, but I don't appear to be able to get it to work in VB.Net, so I was wondering if anyone would be willing to give me a hand.
The code I have is;
Private Sub getLink(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs)
[code].....
View 3 Replies