I have been trying to figure out how to do this for ages. My thanks for this great video. It will save me so much time. Very well and clearly explained. Also, you don't rush through it like most people on here. very helpful. :)
@ddcowan866 жыл бұрын
Great beginner video to RE2 syntax. One thing, can you add a link to a sample copy of your sheet used in the explanation?
@mikemccartneyable7 жыл бұрын
Excellent tutorial, thanks for sharing
@StefanoVerugi7 жыл бұрын
thank you, very easy to follow your tutorials btw I think you posted REGEXEXTRACT videos in reverse order ?
@jaydencollier5265 Жыл бұрын
Thank you so much this is extreamly helpful!
@mohamedtawakol5689 Жыл бұрын
great video thanks for sharing
@strangeDog2 жыл бұрын
講得非常清楚,感謝~
@azenxgaming66286 жыл бұрын
Best tutorial, happy to following you...it's help me a lot, thanks
@Joe-bl5yo2 жыл бұрын
How do I use regex to extract 2 pieces of info , for eg. if I have to tracking numbers how to I extract both of them if they both start with same “Tracking #”.
@CarlDoesMusic5 жыл бұрын
um... legit magic. Appreciated
@ehsanellahi65064 жыл бұрын
Is there any formula that can split/divide data of one row in to multiple rows, keeping the text data same and divide the values depending on some percentages?
@ExcelGoogleSheets4 жыл бұрын
SPLIT function?
@gustavorotondaro66113 жыл бұрын
Thank you for the video! Question...how can you extract multiple words from a cell. For instance, If I had a cell containing "Company X Information Technology and Data Services" and I'd like to extract only the following words: "X", "Technology", "Data Services" - how can I do this? Thanks in advance!
@tridsonline3 жыл бұрын
That's a very specific pattern! You're basically saying that "Company _ Information _ and _" is fixed, it will always be there. If that's really the case, then the pattern would be.. "Company (\w+) Information (\w+) and (.+)$" .. this would yield your output in 3 adjacent cells, beginning with the cell containing the formula. More versatile would be .. "Company (.+) Information (.+) and (.+)$" .. which would handle multi-word companies (eg: instead of just a single word company "X", it would handle "Dell Computers". Or "International Business Machines" etc)
@miftahulhadi1007 Жыл бұрын
THankyou very much for your video, very very helpfulllll 😭
@prempatel15012 жыл бұрын
How to extract word that is before UnderScore Ex:-" sample1_lab1_part1" i want to extract "sample1 " Please help me with this... I tried and got output as "sample_" , but i want Just sample
@0xJericD_2 жыл бұрын
How do you enable that example guide above your function when adding regular expressions.
@ExcelGoogleSheets2 жыл бұрын
Click on the question mark.
@sonnymiles17243 жыл бұрын
How can we extract the last 2 words from a string? thanks in advance - great tutorial!!
@tridsonline3 жыл бұрын
(\w+)\W+(\w+)$
@marcobruni54023 жыл бұрын
Great as always!!
@SanjayDevani4 жыл бұрын
Please Help me with the formula I have a cell (3.50%) or (4.50%) I need the formula to convert into (3.50) or (4.50) just want to remove "%". thank you
@jeremy_ching2 жыл бұрын
Hello. I have some lines but put into one cell. I would like to add a "-" at the beginning of every line. What should I do? I try \w but it only works at the first line.
@ExcelGoogleSheets2 жыл бұрын
="-"&A1
@MyBilal199714 жыл бұрын
How can I use these functions in Script editor? I am having trouble in completing a task. Any help will be appreciated.
@expert19891236 жыл бұрын
Your tutorials are great but it will be helpful if you also provide the file that you are using so that we can practice with you. Thanks for the tutorial.
@NewToneProducer3 жыл бұрын
how do you pull the characters between brackets [ ] ? For example, when I get Google Form data, the survey questions have the names of different options I gave in brackets like [Option 1] and [Option 2]
@supa.scoopa Жыл бұрын
i'd use a formula with textbefore and textafter (but i'm a noob)
@appleship43692 жыл бұрын
URGENT PLEASE: how can i do to add a word and a slash like this (/hi) to a found regex? i need this "/hi" before this regex \b\w{5,5}\b . if someone puts a name with 5 characters in it it must find that 5 characters name witch it does but it has also to add /hi infront of it as a result when it finds it
@ExcelGoogleSheets2 жыл бұрын
="/hi"®EXEXTRACT()
@timelesstimesgoneby2 жыл бұрын
match and replace to columns together google sheets text to columns
@naomipena63183 жыл бұрын
Is there a way to extract text from the end of a string? I'm looking to extract the handle of a URL.
@ExcelGoogleSheets3 жыл бұрын
Please provide an example
@naomipena63183 жыл бұрын
@@ExcelGoogleSheets I'm trying to extract the last digits of a link where that handle is equal to a 'Product ID' number. Since the links have several "/", it's difficult to extract just the very end of the string followed by the last "/". I.e. the link is website/product-page/12345 but I only need "12345".
@ExcelGoogleSheets3 жыл бұрын
@@naomipena6318 REGEXEXTRACT(A1,"\d+$")
@naomipena63183 жыл бұрын
@@ExcelGoogleSheets Thank you!! It worked.
@ExcelGoogleSheets3 жыл бұрын
great!
@kevinyang94844 жыл бұрын
Hi! These videos have been a huge help but I recently ran into a small problem. For example if I had a column containing things like "product-1-description x1, product-2-description x2, so on so forth," and my goal is to convert them to "product 1 x1, product 2 x2, etc.," how would I do that. Im new to regex but I can successfully find/replace "product-1-description x1" into "product 1 x1." But everything after that gets deleted. Is there a way to insert a regular expression for that comma so that the following terms get replaced as well?
@sodaa24892 жыл бұрын
Hi, Did you find the answer to this problem? If you did, can you share? I am trying to work around a similar problem
@omprakashthakur45152 жыл бұрын
kindly help me for the practice file. please🙏🙏
@kumarvineet6802 жыл бұрын
Hi, I have one issue with REGEXEXTRACT. I want to match and extract the exact word. If I use the below formula, it will display the result “Sing,” but I want it to display “NA.” Because the source cell i.e A1 cell does not have the “Sing” word but it has the word "Singapore". =regexextract(A1,”(?i)Sing”) So, how can we extract the exact match instead of the partial match? Thanks & Regards, Vineet
@ExcelGoogleSheets2 жыл бұрын
Incomplete question. Bring several examples of what should and shouldn't match,
@JoshuaDHarvey5 жыл бұрын
Great video, thank you!
@rohitbhandari63824 ай бұрын
Sr where are you upload more new things
@manishvaity54922 жыл бұрын
I am not able to use "REGEX" function in EXCEL 365 as well as Google Sheets!
@ExcelGoogleSheets2 жыл бұрын
Excel doesn't have REGEX functions, at least for now.
@aryanrawat45483 жыл бұрын
Can you tell me how to remove any characters before colon
@ExcelGoogleSheets3 жыл бұрын
this should work =REGEXREPLACE(A1,".*:","")
@alexcatswill59403 жыл бұрын
How to run the REGEXEXTRACT function on a PC program Excel?
@ExcelGoogleSheets3 жыл бұрын
You'll need a custom VBA function. Otherwise it doesn't exist in Excel.
@bulbulahmed309811 ай бұрын
❤❤❤
@josher34364 жыл бұрын
Double Thumbs UPPPPPPPPP
@kaviascout4 жыл бұрын
I don't know why, but it doesn't work! even the 1st example formula, the result is "Formula parse error." I have received this message even with a copy-paste in a google sheet of the goole guide support.google.com/docs/answer/3098244?hl=it, and I'm receiving anyway the same result: "Formula parse error." Does anyone have a suggestion?
@ExcelGoogleSheets4 жыл бұрын
kzbin.info/www/bejne/opvZc2WXp6imhLM
@kaviascout4 жыл бұрын
@@ExcelGoogleSheets Wow! god job! :D really thankful! sharp, fast, efficient!
@luisfernandomacedo14513 жыл бұрын
Great explanation! However, when I tried to extract th number from a text it didn't work properly for all the cells. Look at that: tube cleaning (mechanical 50%) 50 tube cleaning (mechanical 100%) 10 gdwdtge eyeeeetetec (gecgedetde eedgedegded-cgccegcecvececev 50%) 50 gdwdtge eyeeeetetec (gecgedetde eedgedegded-cgccegcecvece 100%) 10 gdwdtge eyeeeetetec (gecgedetde eedgedegded-cgccegcecvececev 40%) 40 gdwdtge eyeeeetetec (gecgedetde eedgedegded-cgccegcecvececev) tube cleaning (mechanical 100%) 10 tube cleaning (mechanical 50%) 50 tube cleaning (operator 60%) 60 tube cleaning (welder 100%) 10 It isn't extracting 100 number. It is bringing 10. That's how I used the function: =IFNA(REGEXEXTRACT(A1;"\w[0-5]");"") May you help me out, please?