Re: I'm Tired! How to Increase Social Media Followers Digital Media Digital Marketing by Langflow Growing social media followers can feel exhausting, but consistency is key! Engaging content, regular posting, and interacting with your audience can make a huge difference. Keep going—it takes time, but it’s worth it! Re: How to Efficiently Develop Apps for iOS and Android? Programming Software Development by gorgebutler … design, and following platform-specific guidelines ensure a smooth experience. Regular testing on different devices and using cloud-based testing tools… Regular expression beginner Programming Software Development by arindam31 Regular Expression (RE) They can be used with string operations. Using … a p.iiiigand no gbng gtrg ghgg') p.i Slash ( \ ) Regular expressions use the backslash character ('\') to indicate special forms or… Regular expression matching in a string Programming Software Development by roverphoenix Regular expression pattern match in a string, I only checked with * as wild card, other wild card characters are easy implement but I havent done that. any problems you can email me @ [email]rramaswa@usc.edu[/email] platform - Unix/Linux, havent tested in windows, should'nt be a problem unless some standard header files are missing. regular expression Programming Web Development by abhijit_2 regular expression that accept only letters OR numbers. Re: Regular expression beginner Programming Software Development by ~s.o.s~ This seems like a direct-copy paste of [url]http://letshare.it/blog/regular-expression-beginner.html[/url] Do you own that content? Re: Regular expression beginner Programming Software Development by arindam31 … a direct-copy paste of [url]http://letshare.it/blog/regular-expression-beginner.html[/url] Do you own that content?[/QUOTE… Re: Regular expression beginner Programming Software Development by arindam31 … a direct-copy paste of [url]http://letshare.it/blog/regular-expression-beginner.html[/url] Do you own that content?[/QUOTE… Regular expression for fetching file name in include directive in C++ file. Programming Software Development by GDICommander … I need help to construct a regular expression in Python that will help …a include directive in C++. I think that regular expressions are a good way to solve this ….h and bye.h). I have written a regular expression that's not working (I think). Here… the strings match this regular expression). Can you help me make a regular expression work with my … Regular expressions and queries Programming Web Development by mmonclair … and check it against a table with records of regular expressions. The regular expression contains a stub of the particular text. Here… can think of any number of ways to use a regular expression to look for strings in a record, or of… clause of a SELECT statement can be checked against a regular expression in a database record. Regular Expression for str_replace Programming Web Development by phpBeginner4 … simple to find output. but here i need to use regular expression. this is the equivalent php function $refined_output = str_replace(' ','',$stripped_result…); i need the regular expression pattern equivalent the above php string function. Regular Expressions Programming Software Development by CodeMonkey775 …column number. Examples: R1C1 R40C18 I'm unfamiliar with regular expressions though and not sure how I could search …+ "Test" + R32C1' How would I write a regular expression that would return all of the cell references in…represent a cell (row,column). But just getting the regular expression to work would be great. Any help is… regular expression problem using in php Programming Web Development by smilyswapna10 Hi, i am using the regular expressions in php. but i am facing some problem in … files in my folder which consists of $var only using regular expressions in php. if i select the radio button as… be displayed with the starting of $var contains data. using regular expressions in php. pls help me. Thanks, Swap. Regular Expression, wildcard cannot contain string Programming Web Development by jedi_ralf …have not had a huge amount of experience with regular expressions. Any help you can give is greatly appreciated…Paris[/CODE] I want to match some details using the regular expression and preg_match_all: [CODE]/Name: (?<name>…multiple lines and being case insensitive. However, the above regular expression will match the below as one entity because … Re: Regular Expression, wildcard cannot contain string Programming Web Development by jedi_ralf For those who are interested, I found out a regular expression that can match the pattern I was looking … wrapper for the non-capturing group ([url]http://www.regular-expressions.info/named.html[/url]) which can occur 0 … after the "/" to allow whitespace in the regular expression. Therefore actual whitespace to be matched is represented by… regular expression for python Programming Software Development by njparton … written in vba in excel that uses the following regular expression to do this: (GBP).\d{1,2…2 days I can't get a python compatible regular expression to grab this data. I also use the…soup = BeautifulSoup(''.join(htmltext)) soup = soup.prettify() #use regular expression to search through for price using above pattern price… Re: Regular expression for fetching file name in include directive in C++ file. Programming Software Development by GDICommander Thank you for your help. It works! By the way, I edited your regular expression to match file that have . in their name (for example, tree.old.h). It gives this: [CODE] re.findall(r'[\w\.]+\.h', line) [/CODE] Regular expression Programming Software Development by AhmedGhazey …’t. Can it be done using traditional regular expression?!! the question what is the regular expressions that solve this problem I'm… Regular Expression for Email Programming Software Development by arindam31 Here is a weird regular expression for emails . We can have various kind of email …[/email] [email]string1.string2@somemail.co.in[/email] The following regular expression can find any of the mails above email2="….manta@gmail.co.in.xv.fg.gh' [/CODE] The above regular expression now can detect any type of combination... Now if… Re: Regular Expression for Email Programming Software Development by TrustyTony … is explained in [url]http://www.regular-expressions.info/email.html[/url] [CODE]r"\b[a-… flag ignore the case. The page has also standards confirming regular expression, but most features of standard are not practically needed… Regular expression - what am I doing wrong? Programming Web Development by dartiss … I'm attempting to perform a preg_match against a regular expression to identify whether it's a YouTube video …or not. I've got, I'll admit, the regular expression from elsewhere... \s*(https?:\/\/www.youtube(?:-nocookie)?.com\/(?:v… not be alphanumeric or backslash Looking at other similar regular expressions I think the format isn't quite right … Regular Expression for a String Programming Web Development by andarivaadu1 …. Can some on please suggest a good website for regular expression Tutorial. Also 1.Can some one please help me …to generate a regular expression meeting all these requirements * A strings minmum length must… Re: Regular Expression for str_replace Programming Web Development by Borzoi Why would you want to use a regular expression instead of str_replace? Not only is it a more complicated way to do a simple task but regular expressions require more resources for the same task. Re: Regular Expression, wildcard cannot contain string Programming Web Development by jedi_ralf [QUOTE=ShawnCplus;803809]There's no need to use a regular expression for that [code=php] $string = 'Name: Bob, Age: 20, … ideas? Also, out of interest, is explode more efficient than regular expressions? The examples I gave were only a small section… Re: Regular Expression for a String Programming Web Development by seslie …/23/235.aspx), [link 2](http://www.mkyong.com/regular-expressions/10-java-regular-expression-examples-you-should-know/), [link3](http://developer… Re: Regular Expression for str_replace Programming Web Development by pritaeas > i need the regular expression pattern equivalent the above php string function. What have you tried? Re: Regular Expression for str_replace Programming Web Development by Taywin … is `\\s+` and you should read it [here](http://www.regular-expressions.info/shorthand.html). PS: Replacing using regex is much… Regular expression Programming Software Development by Nihar Hi there, Does any one know a Perl regular expresson to ignore specific string from a log file. For … i want to use this simple unix command using perl regular expression egrep -i -n "error|fatal" logfile.log… Re: Regular expression Programming Software Development by YUPAPA [QUOTE=Nihar]Hi there, Does any one know a Perl regular expresson to ignore specific string from a log file. For … i want to use this simple unix command using perl regular expression egrep -i -n "error|fatal" logfile.log… Regular Exp Programming Software Development by Rete … one would have been appropriate. Anyways, I've been using regular expressions to find specific information such as e-mail addresses…=Green]Only pick up strings without Capital letters![/COLOR] My regular expression would get: O[COLOR=Red]nly[/COLOR] [COLOR=Red…