What?
This article serves to explain how to split a spreadsheet consisting of multiple sheets into separate files per sheet.
Why?
The Excel file in question was about 36000 rows and had a file ...
Applies to
Transact-SQL (T-SQL)
What?
This is a quick article on how to split a single row into multipe rows based on the value of a column in the same table.
Why?
I have a table that ...
... value
v_HexValue = v_HexGiven.replaceAll("#", "").toUpperCase();
//
// using a regular expression: split into pairs of characters or if short hex given, then split into 3 characters
l_HexParts = v_HexValue.replaceAll("(?)",",",false).toList().subList(1,4);
if(v_HexGiven.toString().len()>4)
{
l_HexParts ...
... integrity check)
c_ExistingDocument = Document[ID == v_ZC_DocumentRecordID];
info c_ExistingDocument.Document_File;
I have all of the above in the same function. I've split it out to explain ...
... var fn_CountDecimals = function(value) {
if (Math.floor(value) !== value)
return value.toString().split(".")[1].length || 0;
return 0;
}
// get the value from ...
... function too often either for debugging/monitoring purposes but it's easier to use an access token then getting the OAuth access codes from the client.
How?
I'm going to split this into 2 code snippets ...
... v_FormattedString;
// yields: 00011,Joel Lipman,"Flat 8|mySpecialComma| House Corner",Brummieland
// split into a list (string delimited by commas)
l_StringParts = v_FormattedString.toList();
// ...
... ; get name of file without its extension
v_ThisFileName := A_LoopFileName
v_ThisFileName := StrReplace( A_LoopFileName, "." A_LoopFileExt, "")
a_ThisFileName := StrSplit( ...
... i.e. Cannot match picklist option in Creator (Options 2 is split from 3)
Solution:
In the Creator picklist/dropdown options, change any comma to , then in your CRM code to create the record ...
... for Inventory OAuth 2.0 Connection - Custom Service - on account server COM
https://deluge.zoho.com/delugeauth/callback
Problem: Split a string with the escape character/backslash character
Trying ...
... for an API.
How?
All with deluge but we will split the date and time value obtained from a CRM field and compare it to the current time combined with a timezone. In this particular case, we will ...
... D
{
FullPathArray := StrSplit(A_LoopFileLongPath, "\")
ThisFolder := FullPathArray[9]
PreferenceFile := A_LoopFileLongPath "\Preferences" ; Get the preferences file from the profile
...
... feeds
// a regex that should work but doesn't
v_FormattedString = v_MyString.replaceAll(("([\n\r])"),"",false);
Split a string by a word:
v_MyString = "PoshDavid Beckham";
v_FormattedString ...
... contents
- Loops through each row and splits by commas (not within quotes)
- Sorts the final array by a object label
function populate_array_from_csv(this_file){
// using deprecated ...
... newSortedArrayObject = JSON.stringify(my_records_copy); // note: will convert single apostrophes to double-quotes
// split by closing curly brace
var myRecords = newSortedArrayObject.split('}');
...
What?
A quick article on how to create a middleware script which accepts the values from a submitted HTML form and sends it to a server on another domain for processing. This applies to Linux Apache ...
What?
Somebody said I could pay to get an export list of my Joomla users. I said Joomla is a FREE OpenSource system, why?
Why?
I want to move a client's list of Joomla users to a new system which ...
... for errors.
Split the first string "myFolder" with the slash (/) as a delimiter, controlling the syntax/format of your site URLs.
For Example
http://www.mysite.com/blog/videos/2010/january/21.html
// ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.